[Glibc-bsd-commits] r1918 - trunk/posixtestsuite/debian
Guillem Jover
guillem at alioth.debian.org
Fri Apr 20 01:54:27 UTC 2007
Author: guillem
Date: 2007-04-20 01:54:26 +0000 (Fri, 20 Apr 2007)
New Revision: 1918
Modified:
trunk/posixtestsuite/debian/changelog
trunk/posixtestsuite/debian/rules
Log:
Add build-indep and build-arch targets, and build depending on both.
Rename install to install-indep, and make it depend on build-indep.
Make binary-indep depend only on install-indep.
Modified: trunk/posixtestsuite/debian/changelog
===================================================================
--- trunk/posixtestsuite/debian/changelog 2007-04-20 00:18:35 UTC (rev 1917)
+++ trunk/posixtestsuite/debian/changelog 2007-04-20 01:54:26 UTC (rev 1918)
@@ -9,6 +9,9 @@
- Include quilt.make from debian/rules.
- Make clean a single colon target and depend on unpatch in debian/rules.
- Remove now unused debian/patch.mk.
+ * Add build-indep and build-arch targets, and build depending on both.
+ * Rename install to install-indep, and make it depend on build-indep.
+ * Make binary-indep depend only on install-indep.
-- Guillem Jover <guillem at debian.org> Wed, 14 Jun 2006 11:12:42 +0300
Modified: trunk/posixtestsuite/debian/rules
===================================================================
--- trunk/posixtestsuite/debian/rules 2007-04-20 00:18:35 UTC (rev 1917)
+++ trunk/posixtestsuite/debian/rules 2007-04-20 01:54:26 UTC (rev 1918)
@@ -5,11 +5,15 @@
include /usr/share/quilt/quilt.make
-build: patch
+build-indep: patch
dh_testdir
$(MAKE)
+build-arch:
+
+build: build-indep build-arch
+
clean: unpatch
dh_testdir
dh_testroot
@@ -18,13 +22,13 @@
dh_clean
-install: build
+install-indep: build-indep
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
-binary-indep: build install
+binary-indep: install-indep
dh_testdir
dh_testroot
dh_installdocs
@@ -42,7 +46,7 @@
dh_md5sums
dh_builddeb
-binary-arch: build install
+binary-arch:
# Nothing to do.
binary: binary-indep binary-arch
More information about the Glibc-bsd-commits
mailing list