Skip to content

Commit fb3d821

Browse files
Remove duplicates from binaries-shared-tests when creating make rules
This avoids a warning from make because binaries-shared-tests contains both $(tests-container) and $(tests-internal).
1 parent 70b6488 commit fb3d821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rules

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ $(addprefix $(objpfx),$(binaries-shared-notests)): %: %.o \
241241
endif
242242

243243
ifneq "$(strip $(binaries-shared-tests))" ""
244-
$(addprefix $(objpfx),$(binaries-shared-tests)): %: %.o \
244+
$(addprefix $(objpfx),$(sort $(binaries-shared-tests))): %: %.o \
245245
$(link-extra-libs-tests) \
246246
$(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
247247
$(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)

0 commit comments

Comments
 (0)