Code

rules: Split 'build' target into 'build-arch' and 'build-indep'.
authorSebastian Harl <sh@tokkee.org>
Mon, 9 Jan 2012 14:23:21 +0000 (15:23 +0100)
committerSebastian Harl <sh@tokkee.org>
Mon, 9 Jan 2012 14:23:21 +0000 (15:23 +0100)
… as recommended by policy.

debian/changelog
debian/rules

index 20dd09aa5ce7b413a10affea0eef1b771f2ace32..87c9f01b7098db6341be323cfe51c1253ec6daae 100644 (file)
@@ -25,6 +25,8 @@ collectd (4.10.4-1) unstable; urgency=low
   * debian/rules:
     - Append DEB_BUILD_ARCH to JAVA_HOME; this is how it's done in the OpenJDK
       package.
+    - Split 'build' target into 'build-arch' and 'build-indep' as recommended
+      by policy.
   * debian/patches/ipvs_h_include, debian/rules:
     - Let the ipvs plugin use linux/ip_vs.h rather than net/ip_vs.h. Also,
       make sure to look for the header in /usr/include rather than the kernel
@@ -32,7 +34,7 @@ collectd (4.10.4-1) unstable; urgency=low
     - Force building of the ipvs plugin since configure is not currently able
       to correctly check for ip_vs.h.
 
- -- Sebastian Harl <tokkee@debian.org>  Mon, 09 Jan 2012 14:35:27 +0100
+ -- Sebastian Harl <tokkee@debian.org>  Mon, 09 Jan 2012 15:22:45 +0100
 
 collectd (4.10.1-2.1) unstable; urgency=high
 
index 7d8139a6466575fa36f4dc9f3adb6b9b5dcfacc6..5e7add1b4b6aa78f2f5e34b0a53e7cfb761c4965 100755 (executable)
@@ -160,7 +160,9 @@ config.status: configure $(DPATCH_STAMPFN)
                JAVA_LDFLAGS="$(JAVA_LDFLAGS)" \
                || ( status=$$?; cat config.log; exit $$status )
 
-build: build-stamp
+build: build-arch build-indep
+build-arch: build-stamp
+build-indep: build-stamp
 
 build-stamp: config.status
        dh_testdir
@@ -270,5 +272,5 @@ binary-arch: build install-arch
        dh_builddeb -a
 
 binary: binary-arch binary-indep
-.PHONY: build clean binary-indep binary-arch binary install-indep install-arch
+.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep install-arch