This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Document IN_LOCALE, and related
[perl5.git] / regen.pl
index 277413c..71a6eda 100644 (file)
--- a/regen.pl
+++ b/regen.pl
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 #
-# regen.pl - a wrapper that runs all *.pl scripts to to autogenerate files
+# regen.pl - a wrapper that runs all *.pl scripts to autogenerate files
 
 require 5.004; # keep this compatible, an old perl is all we may have before
                 # we build the new one
@@ -13,21 +13,20 @@ require 5.004;      # keep this compatible, an old perl is all we may have before
 
 use strict;
 
-# Which scripts to run.
+my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
+foreach my $pl (map {chomp; "regen/$_"} <DATA>) {
+  my @command =  ($^X, '-I.', $pl, @ARGV);
+  print "$tap@command\n";
+  system @command
+    and die "@command failed: $?" 
+}
 
-my @scripts = qw(
-keywords.pl
+__END__
+mg_vtable.pl
 opcode.pl
 overload.pl
 reentr.pl
 regcomp.pl
 warnings.pl
 embed.pl
-);
-
-my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
-foreach my $pl (map {"regen/$_"} @scripts) {
-  my @command =  ($^X, $pl, @ARGV);
-  print "$tap@command\n";
-  system @command;
-}
+feature.pl