Merge branch 'ks/sort-wildcard-in-makefile' into maint-1.7.8

* ks/sort-wildcard-in-makefile:
  t/Makefile: Use $(sort ...) explicitly where needed
maint
Junio C Hamano 2012-03-20 15:26:19 -07:00
commit d4c813d47d
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ DEFAULT_TEST_TARGET ?= test
# Shell quote; # Shell quote;
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))


T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
TSVN = $(wildcard t91[0-9][0-9]-*.sh) TSVN = $(sort $(wildcard t91[0-9][0-9]-*.sh))
TGITWEB = $(wildcard t95[0-9][0-9]-*.sh) TGITWEB = $(sort $(wildcard t95[0-9][0-9]-*.sh))


all: $(DEFAULT_TEST_TARGET) all: $(DEFAULT_TEST_TARGET)