This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
handle xs Useqq dumping of strings with an escape followed by a digit
[perl5.git] / regen.pl
index f103b0a..1b3ae5e 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,21 @@ require 5.004;      # keep this compatible, an old perl is all we may have before
 
 use strict;
 
-# Which scripts to run. Note the ordering: embed.pl must run after
-# opcode.pl, since it depends on pp.sym
+# Which scripts to run.
 
 my @scripts = qw(
-keywords.pl
+mg_vtable.pl
 opcode.pl
 overload.pl
 reentr.pl
 regcomp.pl
 warnings.pl
 embed.pl
+feature.pl
 );
 
 my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
-foreach my $pl (@scripts) {
+foreach my $pl (map {"regen/$_"} @scripts) {
   my @command =  ($^X, $pl, @ARGV);
   print "$tap@command\n";
   system @command;