[source] package/kernel/linux: only access kernel config if DUMP is unset

LEDE Commits lede-commits at lists.infradead.org
Fri Dec 16 05:44:21 PST 2016


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/3a1e3b4e0d3828abc04cc4422b16486f561a4a15

commit 3a1e3b4e0d3828abc04cc4422b16486f561a4a15
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Wed Dec 14 15:35:16 2016 +0100

    package/kernel/linux: only access kernel config if DUMP is unset
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 package/kernel/linux/Makefile | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/package/kernel/linux/Makefile b/package/kernel/linux/Makefile
index 21381c7..7f38f3e 100644
--- a/package/kernel/linux/Makefile
+++ b/package/kernel/linux/Makefile
@@ -23,9 +23,8 @@ export SHELL:=/bin/sh
 
 include $(INCLUDE_DIR)/package.mk
 
-STAMP_BUILT:=$(STAMP_BUILT)_$(firstword $(shell $(SCRIPT_DIR)/kconfig.pl $(LINUX_DIR)/.config | md5sum))
-
 ifeq ($(DUMP),)
+  STAMP_BUILT:=$(STAMP_BUILT)_$(firstword $(shell $(SCRIPT_DIR)/kconfig.pl $(LINUX_DIR)/.config | md5sum))
   -include $(LINUX_DIR)/.config
 endif
 



More information about the lede-commits mailing list