]> git.michaelhowe.org Git - packages/b/bup.git/commitdiff
support --parallel for dh
authorJon Dowland <jmtd@debian.org>
Tue, 6 Nov 2012 22:47:05 +0000 (22:47 +0000)
committerJon Dowland <jmtd@debian.org>
Tue, 6 Nov 2012 22:47:05 +0000 (22:47 +0000)
debian/changelog
debian/rules

index 0c809d21d83b206cdfd80458846f0214932ed122..e93697ff10806d956eaf86a47d70efe6c93f2b02 100644 (file)
@@ -1,3 +1,9 @@
+bup (0.25~git2011.11.04-6) experimental; urgency=low
+
+  * Add --parallel to dh* calls to support parallel building.
+
+ -- Jon Dowland <jmtd@debian.org>  Tue, 06 Nov 2012 22:46:08 +0000
+
 bup (0.25~git2011.11.04-5) unstable; urgency=low
 
   * Add 0.22a-1 changelog entry to this file. Remove changelog
index 2b7e0ccbb1cdce833b22ce65102b1ae60342f98b..b8acddb47dff3e7bc800f0363e29979b3c43c141 100755 (executable)
@@ -7,15 +7,15 @@ override_dh_auto_configure:
 
 override_dh_auto_clean:
        -rm config/config.cmd config/config.h config/config.log config/config.mak config/config.md config/config.sub config/config.vars
-       dh_auto_clean
+       dh_auto_clean --parallel
        if test -f lib/bup/_oldversion.py.pre; then \
                mv lib/bup/_oldversion.py.pre lib/bup/_version.py.pre; \
        fi
 
 override_dh_auto_test:
        if [ "`dpkg-architecture -qDEB_BUILD_ARCH`" != "s390" ]; then \
-               dh_auto_test; \
+               dh_auto_test --parallel; \
        fi
 
 %:
-       dh $@
+       dh $@ --parallel