From: Jon Dowland Date: Tue, 6 Nov 2012 22:47:05 +0000 (+0000) Subject: support --parallel for dh X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=0269387db700c183e6cc66d5b97902e70d4aff92;p=packages%2Fb%2Fbup.git support --parallel for dh --- diff --git a/debian/changelog b/debian/changelog index 0c809d2..e93697f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/debian/rules b/debian/rules index 2b7e0cc..b8acddb 100755 --- a/debian/rules +++ b/debian/rules @@ -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