diff --git a/Configure.pl b/Configure.pl index 4b75f94c88b..07bbf0d5180 100644 --- a/Configure.pl +++ b/Configure.pl @@ -72,7 +72,10 @@ END { no warnings; print "Cleaning up ...\n"; - if (open my $REV, '-|', "$make clean") { close $REV; } + if (open my $CLEAN, '-|', "$make clean") { + my @slurp = <$CLEAN>; + close $CLEAN; + } } print <<"END";