summaryrefslogtreecommitdiff
path: root/dh_clean
diff options
context:
space:
mode:
authorjoey <joey>2002-05-22 18:18:38 +0000
committerjoey <joey>2002-05-22 18:18:38 +0000
commit96050cc65968bb2e0a2112247a618443483f73b2 (patch)
treed35380daca1851f76b56ab0abf26080541b3e4e1 /dh_clean
parentcd60c0e8540451d92caf940eca9c2f4e2b3807f9 (diff)
r524: * Make dh_clean remove autom4te.cache.
Diffstat (limited to 'dh_clean')
-rwxr-xr-xdh_clean4
1 files changed, 4 insertions, 0 deletions
diff --git a/dh_clean b/dh_clean
index d0af17d1..fd9f86f1 100755
--- a/dh_clean
+++ b/dh_clean
@@ -104,6 +104,10 @@ if (! $dh{D_FLAG}) {
-o -name .*.orig -o -name .*.rej -o -name .SUMS
-o -name TAGS -o -name core -o ( -path */.deps/* -a -name *.P )
) $find_options -exec rm -f {} ;"));
+
+ # Stupid autoconf cache directory.
+ doit("rm", "-rf", "autom4te.cache")
+ unless excludefile("autom4te.cache");
}
doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1);