From f2557a89e5605486af9a88681ef1d686e897c5b5 Mon Sep 17 00:00:00 2001 From: pmichaud Date: Sat, 9 May 2009 08:52:40 -0500 Subject: [PATCH] Fix bug with Configure.pl's 'make clean' on Win32. (azawawi++) --- Configure.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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";