diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 06:54:30 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 06:54:30 +0100 |
commit | e79f64ccf6da1ab6cbf0f5aa76c75713a3e62314 (patch) | |
tree | a1031987574113fe08ee4589925f97ff859c8068 | |
parent | 724593d01ab2d409e1752a515b04853cac1a7156 (diff) | |
download | zsh-e79f64ccf6da1ab6cbf0f5aa76c75713a3e62314.tar.gz zsh-e79f64ccf6da1ab6cbf0f5aa76c75713a3e62314.zip |
debian/rules: Simplify target dependencies (drops no-op build-stamp target)
Nice side effect: test suite isn't run more than once anymore
-rwxr-xr-x | debian/rules | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules index 1d3a36c43..09c3c4430 100755 --- a/debian/rules +++ b/debian/rules @@ -40,15 +40,13 @@ CONFIGFLAGS += --enable-zsh-hash-debug endif build: build-arch build-indep -build-stamp: configure-stamp - dh_testdir -build-arch: build-stamp +build-arch: configure-stamp dh_auto_build -B obj --parallel HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel touch $@ -build-indep: build-stamp +build-indep: configure-stamp dh_auto_build -B obj --parallel -- pdf touch $@ @@ -220,7 +218,7 @@ binary-arch-dev: build-arch dh_gencontrol -pzsh-dev dh_builddeb -pzsh-dev -binary: binary-indep binary-arch binary-arch-static binary-arch-dev +binary: binary-indep binary-arch prebuild: Util/preconfig |