Skip to content

Commit d4c813d

Browse files
committed
Merge branch 'ks/sort-wildcard-in-makefile' into maint-1.7.8
* ks/sort-wildcard-in-makefile: t/Makefile: Use $(sort ...) explicitly where needed
2 parents 39af789 + aae5239 commit d4c813d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ DEFAULT_TEST_TARGET ?= test
1717
# Shell quote;
1818
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
1919

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

2424
all: $(DEFAULT_TEST_TARGET)
2525

0 commit comments

Comments
 (0)