mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00
build: fix missing $$(@D)/
from sp_gen.mk
This target can currently fail as the `$(BUILD_PLAT)` target no longer exists, as it is now `$(BUILD_PLAT)/` (with an explicit trailing slash). Change-Id: I9172b2f51f6e02e6369f62468ea63a64ec0f6dd1 Signed-off-by: Chris Kay <chris.kay@arm.com>
This commit is contained in:
parent
4bcf5b847c
commit
fd74ca0d6b
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1562,7 +1562,7 @@ endif #(NEED_FDT)
|
|||
|
||||
# Add Secure Partition packages
|
||||
ifeq (${NEED_SP_PKG},yes)
|
||||
$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
|
||||
$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
|
||||
$(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
|
||||
sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
|
||||
$(s)echo
|
||||
|
|
Loading…
Add table
Reference in a new issue