summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2008-07-08 13:26:02 +0000
committerGuillem Jover <guillem@debian.org>2008-07-08 13:26:02 +0000
commit0090374846eb022e4d1c5b076540e358cc75584b (patch)
tree22bcb4cc5fa64440fb7b302389d26a36e28ee30e
parent22a420054b4ee551e0a576bf168263ed6de56cf7 (diff)
Properly clean up autogenerated cruft
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/rules7
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