diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-10-05 21:26:57 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-10-05 21:26:57 +0000 |
commit | aca78d212117aacedf02dc6c4a61f8759b0bc8ec (patch) | |
tree | 787c905bc89b660c34f1a9acce3970b04420669b /ext/Compress | |
parent | 16816334e212c70aca1836b4031924af481891ad (diff) | |
download | perl-aca78d212117aacedf02dc6c4a61f8759b0bc8ec.tar.gz |
Compress::Zlib's Makefile.PL shouldn't create .bak files when building the core
p4raw-id: //depot/perl@25699
Diffstat (limited to 'ext/Compress')
-rwxr-xr-x | ext/Compress/Zlib/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Compress/Zlib/Makefile.PL b/ext/Compress/Zlib/Makefile.PL index 108843670d..9206db6a42 100755 --- a/ext/Compress/Zlib/Makefile.PL +++ b/ext/Compress/Zlib/Makefile.PL @@ -73,7 +73,7 @@ my @files = ('Zlib.pm', 't/ZlibTestUtils.pm', glob("lib/File/*.pm"), grep(!/\.bak$/, glob("examples/*"))) ; -UpDowngrade(@files) unless $ENV{PERL_CORE}; +UpDowngrade(@files) unless grep { $_ eq 'PERL_CORE=1' } @ARGV; WriteMakefile( NAME => 'Compress::Zlib', |