diff options
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' => '*%'}, ); |