summaryrefslogtreecommitdiff
path: root/regen.pl
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2020-12-28 19:48:01 -0800
committerKarl Williamson <khw@cpan.org>2021-01-17 09:18:15 -0700
commit9824c081922f8e3697322536c3da1702e35e45ab (patch)
treea5c8f673282770dfddd88133421c8df984816e80 /regen.pl
parent1604cfb0273418ed479719f39def5ee559bffda2 (diff)
downloadperl-9824c081922f8e3697322536c3da1702e35e45ab.tar.gz
style: Detabify regen files.
They generate C files. Bump feature.pm and warnings.pm versions to satisfy cmpVERSION.pl. I can't get it to easily ignore whitespace, `git diff --name-only` does not respect the -w flag. regen_perly.pl is left alone. That would require rebuilding perly.* which is beyond a simple indentation change.
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 b4a6eb54c6..71a6eda60a 100644
--- 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, '-I.', '-Ilib', $pl, @ARGV);
+ my @command = ($^X, '-I.', $pl, @ARGV);
print "$tap@command\n";
system @command
and die "@command failed: $?"