diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 03:15:53 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 03:15:53 +0100 |
commit | b4bab2883b76959726c6c6098f5eeeb611086438 (patch) | |
tree | 1691c7fabc43e96e9de110f328a9d1c97a1e0168 | |
parent | 7a8da5965960bace9e6865a87652ef6629e1c317 (diff) | |
download | zsh-b4bab2883b76959726c6c6098f5eeeb611086438.tar.gz zsh-b4bab2883b76959726c6c6098f5eeeb611086438.zip |
Allow parallel builds
-rwxr-xr-x | debian/rules | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/debian/rules b/debian/rules index edad3d03d..05a883f7f 100755 --- a/debian/rules +++ b/debian/rules @@ -50,21 +50,21 @@ ifeq (zsh-beta,$(package)) endif build-arch: build-stamp - dh_auto_build -B obj - HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj + dh_auto_build -B obj --parallel + HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel touch build-arch build-indep: build-stamp ifeq (zsh,$(package)) - dh_auto_build -B obj -- pdf + dh_auto_build -B obj --parallel -- pdf endif touch build-indep build-static: stamp-configure-static dh_testdir - dh_auto_build -B obj-static + dh_auto_build -B obj-static --parallel touch build-static @@ -101,10 +101,10 @@ ifeq (zsh-beta,$(package)) test ! -f Config/version.mk.orig || mv Config/version.mk.orig Config/version.mk endif rm -f build build-static - dh_auto_clean -B obj - dh_auto_clean -B obj-static + dh_auto_clean -B obj --parallel + dh_auto_clean -B obj-static --parallel ifneq (zsh-beta,$(package)) - dh_auto_clean + dh_auto_clean --parallel endif dh_clean rm -rf config.cache obj obj-static autom4te.cache |