summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/rules4
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 7ec9a02..ea74b4b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ inetutils (2:1.5.dfsg.1-5) UNRELEASED; urgency=low
* Add Homepage field.
* Fix parallel FTBFS in debian/rules by moving 'patch' dependency from
the build to the configure.ac target.
+ * Do not ignore make errors on clean or install in debian/rules.
-- Guillem Jover <guillem@debian.org> Fri, 18 May 2007 07:37:19 +0300
diff --git a/debian/rules b/debian/rules
index 3489e1c..a56458a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -90,7 +90,7 @@ clean: unpatch
dh_testdir
dh_testroot
- -$(MAKE) clean
+ [ ! -f Makefile ] || $(MAKE) clean
dh_clean
@@ -100,7 +100,7 @@ install: build
dh_clean -k
dh_installdirs -a
- -$(MAKE) install DESTDIR=$(D)
+ $(MAKE) install DESTDIR=$(D)
# Move ping to /bin
mkdir -p $(D)/bin