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 | |
parent | 8d7ac73014b438fee5a811340d682ece61dda268 (diff) | |
parent | aae5239be2b41477e8dc515f4fa372be2025e70a (diff) | |
download | git-fc75ad72dc7955d3077db4a72818d24de007a582.tar.gz git-fc75ad72dc7955d3077db4a72818d24de007a582.tar.xz |
Merge branch 'ks/sort-wildcard-in-makefile'
* ks/sort-wildcard-in-makefile:
t/Makefile: Use $(sort ...) explicitly where needed
-rw-r--r-- | t/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/Makefile b/t/Makefile index 9046ec981..66ceefefc 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) |