summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-22 13:38:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-22 13:38:12 +0000
commit7ab03db888c10e7993ac75190a132083dd9631d4 (patch)
tree1eed2b8fbe172e53db554a51a4328078839b2ffd /utils
parent059a8bb71dff4eb7a6ca47bbe766a3e1c7c58020 (diff)
downloadperl-7ab03db888c10e7993ac75190a132083dd9631d4.tar.gz
More bytecompiler.
p4raw-id: //depot/perl@6764
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile6
-rw-r--r--utils/perlbc.PL5
2 files changed, 6 insertions, 5 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 95d286efb8..fc248d0d3b 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -5,9 +5,9 @@ REALPERL = ../perl
# Files to be built with variable substitution after miniperl is
# available. Dependencies handled manually below (for now).
-pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL dprofpp.PL
-plextract = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc dprofpp
-plextractexe = c2ph.exe h2ph.exe h2xs.exe perlbug.exe perldoc.exe pl2pm.exe splain.exe perlcc.exe dprofpp.exe
+pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL perlbc.PL dprofpp.PL
+plextract = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc perlbc dprofpp
+plextractexe = c2ph.exe h2ph.exe h2xs.exe perlbug.exe perldoc.exe pl2pm.exe splain.exe perlcc.exe perlbc.exe dprofpp.exe
all: $(plextract)
diff --git a/utils/perlbc.PL b/utils/perlbc.PL
index 51d074be66..fab4f349b2 100644
--- a/utils/perlbc.PL
+++ b/utils/perlbc.PL
@@ -37,8 +37,9 @@ $Config{startperl}
print OUT <<'!NO!SUBS!';
use strict;
-use warning;
-no warning qw(once);
+use warnings;
+
+our($running_under_some_shell);
use Config;