Skip to content

Commit

Permalink
Fix bug with Configure.pl's 'make clean' on Win32. (azawawi++)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed May 9, 2009
1 parent 1f4ec5d commit f2557a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Configure.pl
Expand Up @@ -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";
Expand Down

0 comments on commit f2557a8

Please sign in to comment.