summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-06-13 14:14:18 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-06-13 15:08:41 +0100
commitd316fef450bf77f8d08c2b83be3e70560d86aa4c (patch)
tree325a66ce39cf2118e9538727d0654997aa6f0811 /make_ext.pl
parent2722144b2e9ae7a8723b4a4e842e517533d2f1bd (diff)
downloadperl-d316fef450bf77f8d08c2b83be3e70560d86aa4c.tar.gz
Suppress the pm_to_blib spammage during make
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/make_ext.pl b/make_ext.pl
index b433762cce..f10a47c6a3 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -557,6 +557,7 @@ EOS
}
my @targ = ($target, @$pass_through);
print "Making $target in $ext_dir\n@make @targ\n";
+ local $ENV{PERL_INSTALL_QUIET} = 1;
my $code = system(@make, @targ);
die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
@@ -689,6 +690,7 @@ sub just_pm_to_blib {
}
# This is running under miniperl, so no autodie
if ($target eq 'all') {
+ local $ENV{PERL_INSTALL_QUIET} = 1;
require ExtUtils::Install;
ExtUtils::Install::pm_to_blib(\%pm, '../../lib/auto');
open my $fh, '>', $pm_to_blib