diff options
author | petere <petere@0070b5ef-2f16-0410-befa-9a02bd1d6ddb> | 2011-12-05 23:04:38 +0000 |
---|---|---|
committer | petere <petere@0070b5ef-2f16-0410-befa-9a02bd1d6ddb> | 2011-12-05 23:04:38 +0000 |
commit | bfaeb79874344c047e2ece98ce991797eb31254a (patch) | |
tree | 4b7b046a16b5db148470ed5d84bf5e0bf4d900c9 | |
parent | ea4a56635395714b1d3b833095d264168f118592 (diff) | |
download | ntp-bfaeb79874344c047e2ece98ce991797eb31254a.tar.gz |
Add build-arch and build-indep debian/rules targets, per lintian
git-svn-id: svn://svn.debian.org/pkg-ntp/ntp/trunk@348 0070b5ef-2f16-0410-befa-9a02bd1d6ddb
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 7e9e783..d4028d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,8 +19,9 @@ ntp (1:4.2.6.p3+dfsg-2) UNRELEASED; urgency=low * Add descriptions of -4/-6 options to ntpd man page (closes: #613349) * Update options list on ntptrace man page to match reality (closes: #593417) + * Add build-arch and build-indep debian/rules targets, per lintian - -- Peter Eisentraut <petere@debian.org> Mon, 05 Dec 2011 19:03:10 +0200 + -- Peter Eisentraut <petere@debian.org> Tue, 06 Dec 2011 01:00:02 +0200 ntp (1:4.2.6.p3+dfsg-1) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 5a3d079..b2d797b 100755 --- a/debian/rules +++ b/debian/rules @@ -30,7 +30,9 @@ endif --enable-ntp-signd \ --disable-dependency-tracking -build: build-stamp +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp build-stamp: config.status dh_testdir $(MAKE) @@ -114,4 +116,4 @@ binary-arch: build install dh_builddeb -a binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install |