diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-02-20 18:23:47 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-02-20 18:23:47 +0000 |
commit | e21c45ac3eeaa7a94c61f7c376ce867a862637e4 (patch) | |
tree | b2390e93c2184eb0ca8895a427fc243de65fc21f /bytecode.pl | |
parent | a798dbf2f5009fe67f7460a594ffd57a76c0fa98 (diff) | |
download | perl-e21c45ac3eeaa7a94c61f7c376ce867a862637e4.tar.gz |
Remove compiler files from their old lib/B locations. The compiler
now builds by default (without the byteperl executable so far) and
seems to work at least minimally.
p4raw-id: //depot/perl@565
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bytecode.pl b/bytecode.pl index 7fa3fe4114..8eadbdd941 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -34,12 +34,12 @@ EOT my $perl_header; ($perl_header = $c_header) =~ s{[/ ]?\*/?}{#}g; -unlink "byterun.c", "byterun.h", "lib/B/Asmdata.pm"; +unlink "byterun.c", "byterun.h", "ext/B/Asmdata.pm"; # # Start with boilerplate for Asmdata.pm # -open(ASMDATA_PM, ">lib/B/Asmdata.pm") or die "Asmdata.pm: $!"; +open(ASMDATA_PM, ">ext/B/Asmdata.pm") or die "Asmdata.pm: $!"; print ASMDATA_PM $perl_header, <<'EOT'; package B::Asmdata; use Exporter; |