summaryrefslogtreecommitdiff
path: root/regen.pl
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2010-10-10 15:43:47 +0200
committerSteffen Mueller <smueller@cpan.org>2010-10-10 15:55:11 +0200
commitaf00134636ffe4172cbffeaed3bbad802e58d8a0 (patch)
treef5ab1e5e8ec6035e6bf8c3e3f497b822e0ff8c1c /regen.pl
parent98f8176da90af0f0d21fac5f61e6d180814b57c9 (diff)
downloadperl-af00134636ffe4172cbffeaed3bbad802e58d8a0.tar.gz
Move regen scripts to regen/
Moves the various scripts that are called by regen.pl to a subdirectory to reduce clutter.
Diffstat (limited to 'regen.pl')
-rw-r--r--regen.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/regen.pl b/regen.pl
index f103b0abcf..4f3be80d3a 100644
--- a/regen.pl
+++ b/regen.pl
@@ -27,7 +27,7 @@ embed.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;