This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
struct subst; remove macro for obsolete field
[perl5.git] / regen.pl
index f97a618..14ef147 100644 (file)
--- a/regen.pl
+++ b/regen.pl
@@ -13,11 +13,9 @@ 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
 opcode.pl
 overload.pl
 reentr.pl
@@ -26,8 +24,9 @@ warnings.pl
 embed.pl
 );
 
-foreach my $pl (@scripts) {
+my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
+foreach my $pl (map {"regen/$_"} @scripts) {
   my @command =  ($^X, $pl, @ARGV);
-  print "@command\n";
+  print "$tap@command\n";
   system @command;
 }