From: Felix Fietkau Date: Sun, 2 Dec 2012 15:26:24 +0000 (+0000) Subject: kernel: move KERNEL_BUILD_DIR under BUILD_DIR to properly fix gcc/libc based dependencies X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=6d224553dc98d9cb1e7b0b6fc3eeea52205ff01e kernel: move KERNEL_BUILD_DIR under BUILD_DIR to properly fix gcc/libc based dependencies SVN-Revision: 34450 --- diff --git a/include/kernel.mk b/include/kernel.mk index 4d3795ed5a..589db024db 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -33,7 +33,7 @@ else PATCH_DIR ?= ./patches$(if $(wildcard ./patches-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER)) FILES_DIR ?= $(foreach dir,$(wildcard ./files ./files-$(KERNEL_PATCHVER)),"$(dir)") endif - KERNEL_BUILD_DIR ?= $(BUILD_DIR_BASE)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET))$(DIR_SUFFIX)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX)) + KERNEL_BUILD_DIR ?= $(BUILD_DIR)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET)) LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) LINUX_VERMAGIC:=$(strip $(shell cat $(LINUX_DIR)/.vermagic 2>/dev/null))