diff options
author | Chip Salzenberg <chip@atlantic.net> | 1996-11-24 02:02:42 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-11-26 20:48:00 +1200 |
commit | 56d28764830a0b84b54fd845563c672aed10e4a4 (patch) | |
tree | 02fb92ccc98d47ff1f8aa51fbde8bf91ded98bb7 /embed.pl | |
parent | 6f08146e2c3ab87e9f70e612981a0771a8acb8fb (diff) | |
download | perl-56d28764830a0b84b54fd845563c672aed10e4a4.tar.gz |
Patch for embed.pl when !EMBED && !MULTIPLICITY
Diffstat (limited to 'embed.pl')
-rwxr-xr-x | embed.pl | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |