diff options
author | Guillem Jover <guillem@debian.org> | 2007-12-05 06:34:03 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-06-10 23:21:22 +0200 |
commit | 055e94fadad48771091d8774eff79e7e9b24bab6 (patch) | |
tree | 560edefd3191fa01b7e20f90999460f60831eaf4 | |
parent | c9b83f3a6c762c022cb278a9c2cf046eab6f8c5a (diff) | |
download | inetutils-055e94fadad48771091d8774eff79e7e9b24bab6.tar.gz |
Do not ignore make errors on clean or install
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 4 |
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 |