X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=t%2FMakefile;h=549598575b9fdcefe857ddef1b6d980a9773b033;hb=c66b6c067e49c5ec80f1254daef79aa1c7f5ffce;hp=ba6ddbec976f2ea0e4808d6549f93270e0c2b676;hpb=1a9366c0d48dbac3f728a1c6ff0da0fb7fd95353;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: