summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@atlantic.net>1996-11-24 02:02:42 +1200
committerChip Salzenberg <chip@atlantic.net>1996-11-26 20:48:00 +1200
commit56d28764830a0b84b54fd845563c672aed10e4a4 (patch)
tree02fb92ccc98d47ff1f8aa51fbde8bf91ded98bb7
parent6f08146e2c3ab87e9f70e612981a0771a8acb8fb (diff)
downloadperl-56d28764830a0b84b54fd845563c672aed10e4a4.tar.gz
Patch for embed.pl when !EMBED && !MULTIPLICITY
-rwxr-xr-xembed.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/embed.pl b/embed.pl
index 6bbcd0105a..c535fe0020 100755
--- a/embed.pl
+++ b/embed.pl
@@ -74,7 +74,11 @@ while (<INT>) {
}
close(INT) || warn "Can't close interp.sym: $!\n";
-print EM "\n";
+print EM <<'END';
+
+#ifdef EMBED
+
+END
open(INT, "<interp.sym") || die "Can't open interp.sym: $!\n";
while (<INT>) {
@@ -88,6 +92,8 @@ close(INT) || warn "Can't close interp.sym: $!\n";
print EM <<'END';
+#endif /* EMBED */
+
#endif /* MULTIPLICITY */
END