diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-03-20 15:26:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-20 15:26:19 -0700 |
commit | d4c813d47d5c4f821a6947a29e4a480ec6522f44 (patch) | |
tree | 00156981952a89a6b7fb96cb08f2791a30c9a77d /t | |
parent | Merge branch 'jc/advise-i18n' into maint-1.7.8 (diff) | |
parent | t/Makefile: Use $(sort ...) explicitly where needed (diff) | |
download | tgif-d4c813d47d5c4f821a6947a29e4a480ec6522f44.tar.xz |
Merge branch 'ks/sort-wildcard-in-makefile' into maint-1.7.8
* 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) |