From: Gisle Aas <gisle@aas.no>
Date: Sun, 30 Mar 1997 19:22:11 +0000 (+0200)
Subject: Typo in perl.c: Printing NO_EMBED for perl -V
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b6c639e4b1912ad03b9b10ba9518d96bd0a6cfaf;p=p5sagit%2Fp5-mst-13.2.git

Typo in perl.c: Printing NO_EMBED for perl -V

p5p-msgid: 199703301922.VAA13509@furubotn.sn.no
---

diff --git a/perl.c b/perl.c
index fd39779..5846c82 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");