diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index c3be0ca..479da4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ inetutils (2:1.8-4) UNRELEASED; urgency=low * Do not change inetutils-syslogd Section to base on non-Linux architectures as that section does not exist any longer, just inherit it from the source stanza. + * Add build-indep and build-arch targets (rename build to build-arch). -- Guillem Jover <guillem@debian.org> Wed, 02 Feb 2011 05:43:10 +0100 diff --git a/debian/rules b/debian/rules index 97660e3..6c3320c 100755 --- a/debian/rules +++ b/debian/rules @@ -54,11 +54,15 @@ config.status: configure --with-wrap \ --with-pam -build: debian/control config.status +build-indep: + +build-arch: debian/control config.status dh_testdir $(MAKE) CFLAGS="$(CFLAGS)" +build: build-indep build-arch + # We need it forced on all builds. .PHONY: debian/control @@ -157,5 +161,6 @@ binary-arch: install binary: binary-indep binary-arch -.PHONY: build build-udeb clean binary-indep binary-arch binary install +.PHONY: build-indep build-arch build build-udeb +.PHONY: clean install binary-indep binary-arch binary |