diff options
author | Andreas König <a.koenig@mind.de> | 2000-08-24 16:18:52 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-24 13:48:27 +0000 |
commit | 8d054b165366c75b1e50ef932285104def75a4fd (patch) | |
tree | a0d9a3865afeef24793e9dfdb31299b108dab118 | |
parent | 921ba62a91d1a5b98924b5613fee051fa5acbf32 (diff) | |
download | perl-8d054b165366c75b1e50ef932285104def75a4fd.tar.gz |
Create directories in silence.
Subject: [PATCH] Another silencer for MakeMaker
Message-ID: <m3zom297ir.fsf@ak-71.mind.de>
p4raw-id: //depot/perl@6798
-rw-r--r-- | lib/ExtUtils/Command.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/Command.pm b/lib/ExtUtils/Command.pm index bccc76cc19..aec4013d02 100644 --- a/lib/ExtUtils/Command.pm +++ b/lib/ExtUtils/Command.pm @@ -177,7 +177,7 @@ Creates directory, including any parent directories. sub mkpath { - File::Path::mkpath([expand_wildcards()],1,0777); + File::Path::mkpath([expand_wildcards()],0,0777); } =item test_f file |