[Chris Winters <cwinters@intes.net>] patch to ExtUtils::Manifest
authorAndreas König <a.koenig@mind.de>
Sun, 29 Oct 2000 22:05:59 +0000 (23:05 +0100)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 29 Oct 2000 21:11:08 +0000 (21:11 +0000)
Message-ID: <m3snpfqrwo.fsf@ak-71.mind.de>

p4raw-id: //depot/perl@7489

lib/ExtUtils/Manifest.pm

index 28b7053..80f332c 100644 (file)
@@ -187,13 +187,13 @@ sub manicopy {
     require File::Basename;
     my(%dirs,$file);
     $target = VMS::Filespec::unixify($target) if $Is_VMS;
-    File::Path::mkpath([ $target ],1,$Is_VMS ? undef : 0755);
+    File::Path::mkpath([ $target ],! $Quiet,$Is_VMS ? undef : 0755);
     foreach $file (keys %$read){
        $file = VMS::Filespec::unixify($file) if $Is_VMS;
        if ($file =~ m!/!) { # Ilya, that hurts, I fear, or maybe not?
            my $dir = File::Basename::dirname($file);
            $dir = VMS::Filespec::unixify($dir) if $Is_VMS;
-           File::Path::mkpath(["$target/$dir"],1,$Is_VMS ? undef : 0755);
+           File::Path::mkpath(["$target/$dir"],! $Quiet,$Is_VMS ? undef : 0755);
        }
        cp_if_diff($file, "$target/$file", $how);
     }