X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=t%2FMakefile;h=549598575b9fdcefe857ddef1b6d980a9773b033;hb=de1d4fa2a1273e09c32653c7a21602e36223348c;hp=ba6ddbec976f2ea0e4808d6549f93270e0c2b676;hpb=abb7c7b31c0896bd838bbb6437b310db5a42227a;p=git.git diff --git a/t/Makefile b/t/Makefile index ba6ddbec..54959857 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,11 +19,11 @@ endif all: $(T) clean $(T): - @echo "*** $@ ***"; $(call shellquote,$(SHELL_PATH)) $@ $(GIT_TEST_OPTS) + @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS) clean: rm -fr trash .PHONY: $(T) clean -.NOPARALLEL: +.NOTPARALLEL: