Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'ks/sort-wildcard-in-makefile'
author
Junio C Hamano
<gitster@pobox.com>
Wed, 1 Feb 2012 06:01:15 +0000
(22:01 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 1 Feb 2012 06:01:15 +0000
(22:01 -0800)
* ks/sort-wildcard-in-makefile:
t/Makefile: Use $(sort ...) explicitly where needed
t/Makefile
patch
|
blob
|
history
raw
(from parent 1:
8d7ac73
)
diff --git
a/t/Makefile
b/t/Makefile
index 9046ec98164f44811b67124e869353db4050ec06..66ceefefccac693d29077ef8020fc4f9dbe7a0bc 100644
(file)
--- 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)