aboutsummaryrefslogtreecommitdiff
path: root/Configure.pl
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2012-08-31 15:34:39 -0500
committerpmichaud <pmichaud@pobox.com>2012-08-31 15:34:39 -0500
commit0cb73f2bab8f7185a1b41487cd80207392d98d12 (patch)
treebe94dae75cfb6454a727b454293fb817d67605c1 /Configure.pl
parent30f8f6b8f8e397bff33326768ea9a98650d3470f (diff)
Add 'configclean' target to handle cleanup from Configure.pl.
Diffstat (limited to 'Configure.pl')
-rw-r--r--Configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure.pl b/Configure.pl
index a7db473..35eb47f 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -138,7 +138,7 @@ MAIN: {
{
no warnings;
print "Cleaning up ...\n";
- if (open my $CLEAN, '-|', "$make clean") {
+ if (open my $CLEAN, '-|', "$make configclean") {
my @slurp = <$CLEAN>;
close($CLEAN);
}