Merge "fix(mediatek): covert MTK_BL to uppercase for the build" into integration

This commit is contained in:
Olivier Deprez 2025-01-15 10:31:39 +01:00 committed by TrustedFirmware Code Review
commit 1261f0aa98

View file

@ -71,8 +71,9 @@ define MAKE_MODULE
$(eval SOURCES := $(2))
$(eval OBJS_TEMP := $(addprefix $(BUILD_DIR)/$(MODULE)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
$(eval MODULE_OBJS += $(OBJS_TEMP))
$(eval BL := $(call uppercase,$(3)))
$(eval $(call MAKE_OBJS,$(BUILD_DIR)/$(MODULE),$(SOURCES),${3}))
$(eval $(call MAKE_OBJS,$(BUILD_DIR)/$(MODULE),$(SOURCES),${3},$(BL)))
libraries: $(OBJS_TEMP)
endef