diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-01 14:10:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-01 14:10:03 +0000 |
commit | dc5019e0d5d16f82558242b3acac477a22efb34b (patch) | |
tree | 0173fc5a61b9e321cf82fbf9d5bdf71ff952008b /ext | |
parent | 33ef604341e771c55ecc7192905f0783018d2e79 (diff) | |
download | perl-dc5019e0d5d16f82558242b3acac477a22efb34b.tar.gz |
Do not cleanup *% because the % has special meanings in some
shell environments.
p4raw-id: //depot/perl@7508
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Storable/Makefile.PL | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index 7ed71e69a3..8fbc5b3a2b 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' => '*%'}, ); |