diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-02-18 12:40:22 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-18 23:17:01 -0800 |
commit | 39c015c556f285106931e0500f301de462b0e46e (patch) | |
tree | 9622fa9fcab32dce9bb808c0080fdc0bb8936e17 /t/Makefile | |
parent | abb7c7b31c0896bd838bbb6437b310db5a42227a (diff) | |
download | git-39c015c556f285106931e0500f301de462b0e46e.tar.gz |
Fixes for ancient versions of GNU make
Some versions of GNU make do not understand $(call), and have problems to
interpret rules like this:
some_target: CFLAGS += -Dsome=defs
[jc: simplified substitution a bit. ]
Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/t/Makefile b/t/Makefile index ba6ddbec97..fe65f53c5f 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 |