From 1f96e32fcdf8cb8a8e6f3c21c192a5f1c06fbdac Mon Sep 17 00:00:00 2001 From: chao an Date: Wed, 13 Sep 2023 15:13:15 +0800 Subject: [PATCH] makefile/archive: fix build break if object target is split to multi-part Signed-off-by: chao an --- Application.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application.mk b/Application.mk index 4c2ac8ba1..872fe11d9 100644 --- a/Application.mk +++ b/Application.mk @@ -211,7 +211,7 @@ $(ZIGOBJS): %$(ZIGEXT)$(SUFFIX)$(OBJEXT): %$(ZIGEXT) .built: $(OBJS) $(call SPLITVARIABLE,ALL_OBJS,$(OBJS),100) $(foreach BATCH, $(ALL_OBJS_TOTAL), \ - $(call ARLOCK, $(call CONVERT_PATH,$(BIN)), $(ALL_OBJS_$(BATCH))) \ + $(shell $(call ARLOCK, $(call CONVERT_PATH,$(BIN)), $(ALL_OBJS_$(BATCH)))) \ ) $(Q) touch $@