diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-21 22:28:40 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-21 22:28:40 -0800 |
commit | 712b1dd389ad5bcdbaab0279641f0970702fc1f1 (patch) | |
tree | 5f0a214929d6f3622bb1b329d4b8f818de1b23fe /t | |
parent | d800795613a710fb18353af53730e75185861f41 (diff) | |
parent | b992933853ccffac85f7e40310167ef7b8f0432e (diff) | |
download | git-712b1dd389ad5bcdbaab0279641f0970702fc1f1.tar.gz git-712b1dd389ad5bcdbaab0279641f0970702fc1f1.tar.xz |
Merge branch 'js/portable'
* js/portable:
Fix "gmake -j"
Really honour NO_PYTHON
avoid makefile override warning
Fixes for ancient versions of GNU make
Diffstat (limited to 't')
-rw-r--r-- | t/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/t/Makefile b/t/Makefile index ba6ddbec9..fe65f53c5 100644 --- a/t/Makefile +++ b/t/Makefile @@ -8,10 +8,7 @@ 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))' +SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) @@ -22,7 +19,7 @@ endif all: $(T) clean $(T): - @echo "*** $@ ***"; $(call shellquote,$(SHELL_PATH)) $@ $(GIT_TEST_OPTS) + @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS) clean: rm -fr trash |