diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 1 | ||||
| -rwxr-xr-x | debian/rules | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 101ff35..ea6fef7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -40,6 +40,7 @@ gnumach (2:1.3.99.dfsg.cvs20080708-1) UNRELEASED; urgency=low - Run autoreconf on-demand. - Support parallel builds by moving 'patch' dependency from the build to a new pre-patch-* targets that serializes configuration. + * Properly clean up autogenerated cruft. -- Guillem Jover <guillem@debian.org> Thu, 09 Aug 2007 01:45:22 +0300 diff --git a/debian/rules b/debian/rules index 0ba16c4..2772740 100755 --- a/debian/rules +++ b/debian/rules @@ -82,8 +82,11 @@ clean: unpatch rm -f machine rm -rf build build-dbg $(D_DBG) - find -name autom4te.cache -o -name '*~' -o \ - -name '*.rej' -o -name '*.orig' | xargs rm -rf + + # Clean up autogenerated cruft + rm -rf autom4te.cache build-aux + rm -f aclocal.m4 config.h.in configure INSTALL Makefile.in + find -name '*~' -o -name '*.rej' -o -name '*.orig' | xargs rm -f dh_clean |
