diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 2 | ||||
-rw-r--r-- | target/arm/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/Makefile b/target/Makefile index ae29b2a10..2b6498011 100644 --- a/target/Makefile +++ b/target/Makefile @@ -176,7 +176,7 @@ endif %-compile: %-prepare $(MAKE) -C $(patsubst %-compile,%,$@) compile -%-install: %-compile +%-install: $(MAKE) -C $(patsubst %-install,%,$@) install %-targethelp: diff --git a/target/arm/Makefile b/target/arm/Makefile index 7452b0022..efadc88b3 100644 --- a/target/arm/Makefile +++ b/target/arm/Makefile @@ -138,7 +138,7 @@ endif kernel-strip: ifeq ($(ADK_TARGET_KERNEL_GIT_REPO_NAME),rpi) @echo adding DT trailer to kernel $(MAKE_TRACE) - PATH='$(HOST_PATH)' perl $(LINUX_DIR)/scripts/mkknlimg $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL) + PATH='$(HOST_PATH)' perl $(LINUX_DIR)/scripts/mkknlimg $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL) $(MAKE_TRACE) else @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL) endif |