Do not cleanup *% because the % has special meanings in some
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 1 Nov 2000 14:10:03 +0000 (14:10 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 1 Nov 2000 14:10:03 +0000 (14:10 +0000)
shell environments.

p4raw-id: //depot/perl@7508

ext/Storable/Makefile.PL

index 7ed71e6..8fbc5b3 100644 (file)
@@ -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' => '*%'},
 );