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