diff options
author | joey <joey> | 2002-05-22 18:18:38 +0000 |
---|---|---|
committer | joey <joey> | 2002-05-22 18:18:38 +0000 |
commit | 96050cc65968bb2e0a2112247a618443483f73b2 (patch) | |
tree | d35380daca1851f76b56ab0abf26080541b3e4e1 /dh_clean | |
parent | cd60c0e8540451d92caf940eca9c2f4e2b3807f9 (diff) | |
download | debhelper-96050cc65968bb2e0a2112247a618443483f73b2.tar.gz |
r524: * Make dh_clean remove autom4te.cache.
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |