From: Jarkko Hietaniemi Date: Wed, 1 Nov 2000 14:10:03 +0000 (+0000) Subject: Do not cleanup *% because the % has special meanings in some X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dc5019e0d5d16f82558242b3acac477a22efb34b;p=p5sagit%2Fp5-mst-13.2.git Do not cleanup *% because the % has special meanings in some shell environments. p4raw-id: //depot/perl@7508 --- diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index 7ed71e6..8fbc5b3 100644 --- a/ext/Storable/Makefile.PL +++ b/ext/Storable/Makefile.PL @@ -19,6 +19,8 @@ WriteMakefile( 'MAN3PODS' => {}, 'VERSION_FROM' => 'Storable.pm', 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, - 'clean' => {'FILES' => '*%'}, +# The % would be understood as a filename wildcard in VMS and +# in some Windows shells. (Charles Lane and Gurusamy Sarathy) +# 'clean' => {'FILES' => '*%'}, );