diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-10 13:50:01 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-10 13:51:52 -0700 |
commit | 4769948afe7c502d37746edc2ee2c084c9dcb325 (patch) | |
tree | cb6045a7e6dc192bfce076ed8c1bab3795822b5d /t | |
parent | d5b0c9ea178dab3599674ccff50645c0464b8c31 (diff) | |
download | git-4769948afe7c502d37746edc2ee2c084c9dcb325.tar.gz git-4769948afe7c502d37746edc2ee2c084c9dcb325.tar.xz |
Deal with $(bindir) and friends with whitespaces.
... using HPA's shellquote macro.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rw-r--r-- | t/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/t/Makefile b/t/Makefile index e71da7782..5c76afff8 100644 --- a/t/Makefile +++ b/t/Makefile @@ -7,10 +7,16 @@ SHELL_PATH ?= $(SHELL) TAR ?= $(TAR) +# Shell quote; +# Result of this needs to be placed inside '' +shq = $(subst ','\'',$(1)) +# This has surrounding '' +shellquote = '$(call shq,$(1))' + T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) all: - @$(foreach t,$T,echo "*** $t ***"; $(SHELL_PATH) $t $(GIT_TEST_OPTS) || exit; ) + @$(foreach t,$T,echo "*** $t ***"; $(call shellquote,$(SHELL_PATH)) $t $(GIT_TEST_OPTS) || exit; ) @rm -fr trash clean: |