diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-03-28 18:50:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-03-28 18:50:00 +0000 |
commit | 21632774c37bb8874de17fa6ad931c73d19518cd (patch) | |
tree | cd08ee24e9b82c03c8e191fa74034609795df40f /gnu/usr.bin/perl/regen.pl | |
parent | f5f84f19259933187f80faf71c3c9c482a4867e6 (diff) |
perl 5.8.8 import
Diffstat (limited to 'gnu/usr.bin/perl/regen.pl')
-rw-r--r-- | gnu/usr.bin/perl/regen.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/regen.pl b/gnu/usr.bin/perl/regen.pl index 5d4c1df2b38..55bd4dc3bba 100644 --- a/gnu/usr.bin/perl/regen.pl +++ b/gnu/usr.bin/perl/regen.pl @@ -26,7 +26,8 @@ my %gen = ( 'keywords.pl' => [qw[keywords.h]], 'opcode.pl' => [qw[opcode.h opnames.h pp_proto.h pp.sym]], 'regcomp.pl' => [qw[regnodes.h]], - 'warnings.pl' => [qw[warnings.h lib/warnings.pm]] + 'warnings.pl' => [qw[warnings.h lib/warnings.pm]], + 'reentr.pl' => [qw[reentr.c reentr.h]], ); sub do_cksum { @@ -46,7 +47,7 @@ sub do_cksum { } foreach my $pl (qw (keywords.pl opcode.pl embed.pl bytecode.pl - regcomp.pl warnings.pl autodoc.pl)) { + regcomp.pl warnings.pl autodoc.pl reentr.pl)) { print "$^X $pl\n"; my %cksum0; %cksum0 = do_cksum($pl) unless $pl eq 'warnings.pl'; # the files were removed |