From: Linus Arver Date: Thu, 2 May 2024 04:54:18 +0000 (+0000) Subject: Makefile: sort UNIT_TEST_PROGRAMS X-Git-Tag: v2.46.0-rc0~114^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=704b59099e4d3f47d547b452d10979b328533cca;p=thirdparty%2Fgit.git Makefile: sort UNIT_TEST_PROGRAMS Signed-off-by: Linus Arver Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 4e255c81f2..d3a3f16f07 100644 --- a/Makefile +++ b/Makefile @@ -1343,10 +1343,10 @@ THIRD_PARTY_SOURCES += sha1collisiondetection/% THIRD_PARTY_SOURCES += sha1dc/% UNIT_TEST_PROGRAMS += t-basic -UNIT_TEST_PROGRAMS += t-mem-pool -UNIT_TEST_PROGRAMS += t-strbuf UNIT_TEST_PROGRAMS += t-ctype +UNIT_TEST_PROGRAMS += t-mem-pool UNIT_TEST_PROGRAMS += t-prio-queue +UNIT_TEST_PROGRAMS += t-strbuf UNIT_TEST_PROGS = $(patsubst %,$(UNIT_TEST_BIN)/%$X,$(UNIT_TEST_PROGRAMS)) UNIT_TEST_OBJS = $(patsubst %,$(UNIT_TEST_DIR)/%.o,$(UNIT_TEST_PROGRAMS)) UNIT_TEST_OBJS += $(UNIT_TEST_DIR)/test-lib.o