diff options
author | Guillem Jover <guillem@debian.org> | 2009-02-17 01:19:56 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-06-10 23:21:24 +0200 |
commit | bb7e8f22e13b96dbffcd81af06f41d1b05602c86 (patch) | |
tree | bb314ba1f31d086747a0966c88eb687f4fdf488e | |
parent | 0a3dbb1c550b1ed48a51f8bf452093c3a677dbb5 (diff) | |
download | inetutils-bb7e8f22e13b96dbffcd81af06f41d1b05602c86.tar.gz |
Switch the unpatch make call inside the clean target to its dependency
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 4db4d83..ae69661 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,7 @@ inetutils (2:1.6-1) UNRELEASED; urgency=low * Add misc:Depends substvar to all binary package Depends fields. * Do not pass the --force option to autoreconf, and thus stop unneedingly removing INSTALL and build-aux. + * Switch the unpatch make call inside the clean target to its dependency. -- Guillem Jover <guillem@debian.org> Mon, 09 Feb 2009 22:01:00 +0200 diff --git a/debian/rules b/debian/rules index fd9213b..7606fb7 100755 --- a/debian/rules +++ b/debian/rules @@ -84,7 +84,7 @@ else > debian/control endif -clean: +clean: unpatch dh_testdir dh_testroot @@ -94,9 +94,6 @@ clean: find -name Makefile.in | xargs rm -f rm -f aclocal.m4 config.hin configure - # This is here so that we don't try to go under doc/ - $(MAKE) -f debian/rules unpatch - dh_clean install: build |