From: Felix Fietkau Date: Mon, 29 Sep 2008 18:09:24 +0000 (+0000) Subject: fix up the asm includes location for .27 when building kernel headers X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=7bf353216cf18da228a25a440a72274f3f2c4f07;p=openwrt%2Fstaging%2Fmkresin.git fix up the asm includes location for .27 when building kernel headers SVN-Revision: 12802 --- diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile index 4443c43463..a182c83c1f 100644 --- a/toolchain/kernel-headers/Makefile +++ b/toolchain/kernel-headers/Makefile @@ -53,6 +53,11 @@ define Build/Prepare ln -sf linux-$(LINUX_VERSION) $(LINUX_HEADERS_DIR) yes '' | $(KMAKE) oldconfig $(KMAKE) include/linux/version.h include/asm + if [ -d $(PKG_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm ]; then \ + $(CP) \ + $(PKG_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm/. \ + $(PKG_BUILD_DIR)/include/asm-$(LINUX_KARCH)/; \ + fi $(call Build/Configure/$(ARCH)) endef