Skip to content

Commit d6da8b3

Browse files
avargitster
authored andcommitted
Makefile: sort OBJECTS assignment for subsequent change
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 752b3ef commit d6da8b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2390,12 +2390,12 @@ TEST_OBJS := $(patsubst %$X,%.o,$(TEST_PROGRAMS)) $(patsubst %,t/helper/%,$(TEST
23902390

23912391
OBJECTS += $(LIB_OBJS)
23922392
OBJECTS += $(BUILTIN_OBJS)
2393+
OBJECTS += common-main.o
2394+
OBJECTS += git.o
23932395
OBJECTS += $(PROGRAM_OBJS)
23942396
OBJECTS += $(TEST_OBJS)
23952397
OBJECTS += $(XDIFF_OBJS)
23962398
OBJECTS += $(FUZZ_OBJS)
2397-
OBJECTS += common-main.o
2398-
OBJECTS += git.o
23992399
ifndef NO_CURL
24002400
OBJECTS += http.o http-walker.o remote-curl.o
24012401
endif

0 commit comments

Comments
 (0)