diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-01-31 22:01:15 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-01-31 22:01:15 -0800 |
commit | fc75ad72dc7955d3077db4a72818d24de007a582 (patch) | |
tree | f9cf995713224f40cec87e38cff1d5d68163c510 /t | |
parent | Merge branch 'ld/git-p4-branches-and-labels' (diff) | |
parent | t/Makefile: Use $(sort ...) explicitly where needed (diff) | |
download | tgif-fc75ad72dc7955d3077db4a72818d24de007a582.tar.xz |
Merge branch 'ks/sort-wildcard-in-makefile'
* ks/sort-wildcard-in-makefile:
t/Makefile: Use $(sort ...) explicitly where needed
Diffstat (limited to 't')
-rw-r--r-- | t/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/Makefile b/t/Makefile index 9046ec9816..66ceefefcc 100644 --- a/t/Makefile +++ b/t/Makefile @@ -17,9 +17,9 @@ DEFAULT_TEST_TARGET ?= test # Shell quote; SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) -T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) -TSVN = $(wildcard t91[0-9][0-9]-*.sh) -TGITWEB = $(wildcard t95[0-9][0-9]-*.sh) +T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)) +TSVN = $(sort $(wildcard t91[0-9][0-9]-*.sh)) +TGITWEB = $(sort $(wildcard t95[0-9][0-9]-*.sh)) all: $(DEFAULT_TEST_TARGET) |