Skip to content

Commit

Permalink
write_buildcustomize.pl: Standardize indents at 4 spaces
Browse files Browse the repository at this point in the history
Including one place spotted by mauke.
  • Loading branch information
jkeenan committed Jul 6, 2024
1 parent c5df4fd commit b786e5e
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions write_buildcustomize.pl
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,33 @@
# run under miniperl when nothing but miniperl will build :-(.
# Text::ParseWords is required in ExtUtils::Liblist::Kid

my @toolchain = qw(cpan/AutoLoader/lib
dist/Carp/lib
dist/PathTools dist/PathTools/lib
cpan/ExtUtils-Install/lib
cpan/ExtUtils-MakeMaker/lib
cpan/ExtUtils-Manifest/lib
cpan/File-Path/lib
ext/re
dist/Term-ReadLine/lib
dist/Exporter/lib
ext/File-Find/lib
cpan/Text-Tabs/lib
dist/constant/lib
cpan/version/lib
cpan/Getopt-Long/lib
cpan/Text-ParseWords/lib
cpan/ExtUtils-PL2Bat/lib
);
my @toolchain = qw(
cpan/AutoLoader/lib
dist/Carp/lib
dist/PathTools
dist/PathTools/lib
cpan/ExtUtils-Install/lib
cpan/ExtUtils-MakeMaker/lib
cpan/ExtUtils-Manifest/lib
cpan/File-Path/lib
ext/re
dist/Term-ReadLine/lib
dist/Exporter/lib
ext/File-Find/lib
cpan/Text-Tabs/lib
dist/constant/lib
cpan/version/lib
cpan/Getopt-Long/lib
cpan/Text-ParseWords/lib
cpan/ExtUtils-PL2Bat/lib
);

# These are for XS building on Win32, since nonxs and xs build simultaneously
# on Win32 if parallel building
push @toolchain, qw(
dist/ExtUtils-ParseXS/lib
cpan/parent/lib
cpan/ExtUtils-Constant/lib
dist/ExtUtils-ParseXS/lib
cpan/parent/lib
cpan/ExtUtils-Constant/lib
dist/base/lib
) if $^O eq 'MSWin32';
push @toolchain, 'ext/VMS-Filespec/lib' if $^O eq 'VMS';
Expand All @@ -64,7 +66,7 @@
my $cwd = Cwd::getcwd();

defined $cwd
or die "$0: Can't determine current working directory\n";
or die "$0: Can't determine current working directory\n";

# lib must be last, as the toolchain modules write themselves into it
# as they build, and it's important that @INC order ensures that the partially
Expand Down

0 comments on commit b786e5e

Please sign in to comment.