From d316fef450bf77f8d08c2b83be3e70560d86aa4c Mon Sep 17 00:00:00 2001 From: Chris 'BinGOs' Williams Date: Fri, 13 Jun 2014 14:14:18 +0100 Subject: Suppress the pm_to_blib spammage during make --- make_ext.pl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'make_ext.pl') 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 -- cgit v1.2.1