Patch for embed.pl when !EMBED && !MULTIPLICITY
Chip Salzenberg [Sat, 23 Nov 1996 14:02:42 +0000 (02:02 +1200)]
embed.pl

index 6bbcd01..c535fe0 100755 (executable)
--- 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