Skip to content

Commit b786e5e

Browse files
committed
write_buildcustomize.pl: Standardize indents at 4 spaces
Including one place spotted by mauke.
1 parent c5df4fd commit b786e5e

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

write_buildcustomize.pl

+24-22
Original file line numberDiff line numberDiff line change
@@ -28,31 +28,33 @@
2828
# run under miniperl when nothing but miniperl will build :-(.
2929
# Text::ParseWords is required in ExtUtils::Liblist::Kid
3030

31-
my @toolchain = qw(cpan/AutoLoader/lib
32-
dist/Carp/lib
33-
dist/PathTools dist/PathTools/lib
34-
cpan/ExtUtils-Install/lib
35-
cpan/ExtUtils-MakeMaker/lib
36-
cpan/ExtUtils-Manifest/lib
37-
cpan/File-Path/lib
38-
ext/re
39-
dist/Term-ReadLine/lib
40-
dist/Exporter/lib
41-
ext/File-Find/lib
42-
cpan/Text-Tabs/lib
43-
dist/constant/lib
44-
cpan/version/lib
45-
cpan/Getopt-Long/lib
46-
cpan/Text-ParseWords/lib
47-
cpan/ExtUtils-PL2Bat/lib
48-
);
31+
my @toolchain = qw(
32+
cpan/AutoLoader/lib
33+
dist/Carp/lib
34+
dist/PathTools
35+
dist/PathTools/lib
36+
cpan/ExtUtils-Install/lib
37+
cpan/ExtUtils-MakeMaker/lib
38+
cpan/ExtUtils-Manifest/lib
39+
cpan/File-Path/lib
40+
ext/re
41+
dist/Term-ReadLine/lib
42+
dist/Exporter/lib
43+
ext/File-Find/lib
44+
cpan/Text-Tabs/lib
45+
dist/constant/lib
46+
cpan/version/lib
47+
cpan/Getopt-Long/lib
48+
cpan/Text-ParseWords/lib
49+
cpan/ExtUtils-PL2Bat/lib
50+
);
4951

5052
# These are for XS building on Win32, since nonxs and xs build simultaneously
5153
# on Win32 if parallel building
5254
push @toolchain, qw(
53-
dist/ExtUtils-ParseXS/lib
54-
cpan/parent/lib
55-
cpan/ExtUtils-Constant/lib
55+
dist/ExtUtils-ParseXS/lib
56+
cpan/parent/lib
57+
cpan/ExtUtils-Constant/lib
5658
dist/base/lib
5759
) if $^O eq 'MSWin32';
5860
push @toolchain, 'ext/VMS-Filespec/lib' if $^O eq 'VMS';
@@ -64,7 +66,7 @@
6466
my $cwd = Cwd::getcwd();
6567

6668
defined $cwd
67-
or die "$0: Can't determine current working directory\n";
69+
or die "$0: Can't determine current working directory\n";
6870

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

0 commit comments

Comments
 (0)