]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Makefile: sort OBJECTS assignment for subsequent change
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Tue, 23 Feb 2021 11:41:29 +0000 (12:41 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 23 Feb 2021 17:57:58 +0000 (09:57 -0800)
Change the order of the OBJECTS assignment, this makes a follow-up
change where we split it up into two variables smaller.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile

index ba21075d7ce3e9e709e13e70087a184a217f9849..da26a5d350604445f2fbe2b5aa241af275da201a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2390,12 +2390,12 @@ TEST_OBJS := $(patsubst %$X,%.o,$(TEST_PROGRAMS)) $(patsubst %,t/helper/%,$(TEST
 
 OBJECTS += $(LIB_OBJS)
 OBJECTS += $(BUILTIN_OBJS)
+OBJECTS += common-main.o
+OBJECTS += git.o
 OBJECTS += $(PROGRAM_OBJS)
 OBJECTS += $(TEST_OBJS)
 OBJECTS += $(XDIFF_OBJS)
 OBJECTS += $(FUZZ_OBJS)
-OBJECTS += common-main.o
-OBJECTS += git.o
 ifndef NO_CURL
        OBJECTS += http.o http-walker.o remote-curl.o
 endif