From: nbd 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: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=a76de89b3ef72a78969a771902b1a4612076e3de kernel: move KERNEL_BUILD_DIR under BUILD_DIR to properly fix gcc/libc based dependencies git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34450 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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))