From: Alexander Couzens Date: Tue, 13 Jun 2017 11:04:35 +0000 (+0200) Subject: build: move definition of KBUILD_BUILD_TIMESTAMP to include/kernel.mk X-Git-Tag: v18.06.0-rc1~2672 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=e5fc15bf9a5868758e4efc8688b8bf58295fa5e7 build: move definition of KBUILD_BUILD_TIMESTAMP to include/kernel.mk Fixes: 0aed054bec (build: add KERNEL_MAKE and KERNEL_MAKE_FLAGS variables and move to kernel.mk) Signed-off-by: Alexander Couzens --- diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk index 8a3e2be0eb..f0618633b2 100644 --- a/include/kernel-defaults.mk +++ b/include/kernel-defaults.mk @@ -5,12 +5,6 @@ # See /LICENSE for more information. # -ifneq ($(SOURCE_DATE_EPOCH),) - ifndef DUMP - KBUILD_BUILD_TIMESTAMP:=$(shell perl -e 'print scalar gmtime($(SOURCE_DATE_EPOCH))') - endif -endif - ifdef CONFIG_STRIP_KERNEL_EXPORTS KERNEL_MAKEOPTS += \ EXTRA_LDSFLAGS="-I$(KERNEL_BUILD_DIR) -include symtab.h" diff --git a/include/kernel.mk b/include/kernel.mk index effece2869..464c94572e 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -10,6 +10,12 @@ CHECK:=1 DUMP:=1 endif +ifneq ($(SOURCE_DATE_EPOCH),) + ifndef DUMP + KBUILD_BUILD_TIMESTAMP:=$(shell perl -e 'print scalar gmtime($(SOURCE_DATE_EPOCH))') + endif +endif + ifeq ($(__target_inc),) ifndef CHECK include $(INCLUDE_DIR)/target.mk