summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-07-14 13:07:34 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-07-14 13:07:34 +0200
commit36fa1bbf6f510e57098edab3932015dc747bbd49 (patch)
tree01d3bb538899bb9eb735fa342215c103cd5205c0 /include
parent18533ff4158f3b33c00fb8a2c664d7636fa1dd3a (diff)
downloadmtk-20170518-36fa1bbf6f510e57098edab3932015dc747bbd49.zip
mtk-20170518-36fa1bbf6f510e57098edab3932015dc747bbd49.tar.gz
mtk-20170518-36fa1bbf6f510e57098edab3932015dc747bbd49.tar.bz2
include/kernel-build.mk: fix kernel rebuild on backport patch changes
An incorrect variable name was referenced in KERNEL_FILE_DEPENDS, leading to the omission of the backport-* patch dirs in the generation of the prepared stamp name. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'include')
-rw-r--r--include/kernel-build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel-build.mk b/include/kernel-build.mk
index c3658c2..b7bcf0e 100644
--- a/include/kernel-build.mk
+++ b/include/kernel-build.mk
@@ -11,7 +11,7 @@ ifneq ($(DUMP),1)
all: compile
endif
-KERNEL_FILE_DEPENDS=$(BACKPORT_PATCH_DIR) $(GENERIC_PATCH_DIR) $(GENERIC_HACK_DIR) $(PATCH_DIR) $(GENERIC_FILES_DIR) $(FILES_DIR)
+KERNEL_FILE_DEPENDS=$(GENERIC_BACKPORT_DIR) $(GENERIC_PATCH_DIR) $(GENERIC_HACK_DIR) $(PATCH_DIR) $(GENERIC_FILES_DIR) $(FILES_DIR)
STAMP_PREPARED=$(LINUX_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call find_md5,$(KERNEL_FILE_DEPENDS),)))
STAMP_CONFIGURED:=$(LINUX_DIR)/.configured
include $(INCLUDE_DIR)/download.mk