summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>1997-03-30 21:22:11 +0200
committerChip Salzenberg <chip@atlantic.net>1997-03-26 07:04:34 +1200
commitb6c639e4b1912ad03b9b10ba9518d96bd0a6cfaf (patch)
treeacb8a119825564e3f665e51354673c7adc4e480c
parent9b9b466fb02dc96c81439bafbb3b2da55238cfd2 (diff)
downloadperl-b6c639e4b1912ad03b9b10ba9518d96bd0a6cfaf.tar.gz
Typo in perl.c: Printing NO_EMBED for perl -V
p5p-msgid: 199703301922.VAA13509@furubotn.sn.no
-rw-r--r--perl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl.c b/perl.c
index fd3977921d..5846c82fac 100644
--- a/perl.c
+++ b/perl.c
@@ -619,13 +619,13 @@ setuid perl scripts securely.\n");
#else
sv_catpv(Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
#endif
-#if defined(DEBUGGING) || defined(NOEMBED) || defined(MULTIPLICITY)
+#if defined(DEBUGGING) || defined(NO_EMBED) || defined(MULTIPLICITY)
strcpy(buf,"\" Compile-time options:");
# ifdef DEBUGGING
strcat(buf," DEBUGGING");
# endif
-# ifdef NOEMBED
- strcat(buf," NOEMBED");
+# ifdef NO_EMBED
+ strcat(buf," NO_EMBED");
# endif
# ifdef MULTIPLICITY
strcat(buf," MULTIPLICITY");