Skip to content

Commit

Permalink
Merge branch 'ks/sort-wildcard-in-makefile' into maint-1.7.8
Browse files Browse the repository at this point in the history
* ks/sort-wildcard-in-makefile:
  t/Makefile: Use $(sort ...) explicitly where needed
  • Loading branch information
Junio C Hamano committed Mar 20, 2012
2 parents 39af789 + aae5239 commit d4c813d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit d4c813d

Please sign in to comment.