diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 217dd0d..33aebb8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ conntrack (1:0.9.5-1) UNRELEASED; urgency=low * updated watchfile for new upstream name "conntrack-tools" (Closes: #449899) * moved DH_COMPAT to debian/compat + * don't ignore "make distclean" errors -- Max Kellermann <max@duempel.org> Tue, 6 Nov 2007 08:15:26 +0100 diff --git a/debian/rules b/debian/rules index 0ccb353..2754882 100755 --- a/debian/rules +++ b/debian/rules @@ -34,7 +34,7 @@ clean: dh_testroot rm -f build-stamp install*-stamp - -$(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean dh_clean |