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 8788668..71a6eda 100644 (file)
--- a/regen.pl
+++ b/regen.pl
@@ -15,7 +15,7 @@ use strict;
 
 my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
 foreach my $pl (map {chomp; "regen/$_"} <DATA>) {
-  my @command =  ($^X, $pl, @ARGV);
+  my @command =  ($^X, '-I.', $pl, @ARGV);
   print "$tap@command\n";
   system @command
     and die "@command failed: $?"