diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 03:25:48 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 03:25:48 +0100 |
commit | 4fe45240b92a5c48022c2deb0c11255ad59c8eba (patch) | |
tree | 80922e46a04d69c092b504fdfd8527cfb6eb9ff8 | |
parent | a046f7bff7e3d5ab8a2077f8305653ccf0118014 (diff) | |
download | zsh-4fe45240b92a5c48022c2deb0c11255ad59c8eba.tar.gz zsh-4fe45240b92a5c48022c2deb0c11255ad59c8eba.zip |
Consequently use "touch $@" to create stamp files
-rwxr-xr-x | debian/rules | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules index d275c2c0e..74c79d375 100755 --- a/debian/rules +++ b/debian/rules @@ -53,20 +53,20 @@ build-arch: build-stamp dh_auto_build -B obj --parallel HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel - touch build-arch + touch $@ build-indep: build-stamp ifeq (zsh,$(package)) dh_auto_build -B obj --parallel -- pdf endif - touch build-indep + touch $@ build-static: configure-static-stamp dh_testdir dh_auto_build -B obj-static --parallel - touch build-static + touch $@ build-debug: DEB_BUILD_OPTIONS+=debug build-debug: build @@ -84,7 +84,7 @@ ifeq (zsh-beta,$(package)) sed -i -e 's/^VERSION=\([^+]*\)$$/VERSION=\1-cvs$(snapshot_date)/' Config/version.mk endif dh_auto_configure -B obj -- $(CONFIGFLAGS) - touch configure-stamp + touch $@ configure-static-stamp: configure dh_testdir @@ -92,7 +92,7 @@ configure-static-stamp: configure dh_auto_configure -B obj-static -- $(CONFIGFLAGS) $(STATICFLAGS) # cp debian/static.conf obj-static/Src/mymods.conf sed -i -e 's/files.mdd link=no/files.mdd link=static/;s/stat.mdd link=no/stat.mdd link=static/' obj-static/config.modules - touch configure-static-stamp + touch $@ clean: dh_testdir |