From: Ralph Hempel Date: Sun, 1 Mar 2009 11:04:08 +0000 (+0000) Subject: fix powerpc build (works for 2.4 and 2.6) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=b1b8c3a0211dc35fea848bab236bbc2f40c90df7;hp=e64941220413f9b16fa2eb96390e166504e971c3 fix powerpc build (works for 2.4 and 2.6) SVN-Revision: 14707 --- diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile index 04945146fc..37f87dd37b 100644 --- a/toolchain/kernel-headers/Makefile +++ b/toolchain/kernel-headers/Makefile @@ -45,6 +45,7 @@ endef define Host/Prepare/pre/powerpc if [ -d $(HOST_BUILD_DIR)/include/asm-ppc ]; then \ + mkdir -p $(PKG_BUILD_DIR)/include/asm-powerpc/; \ $(CP) $(HOST_BUILD_DIR)/include/asm-ppc/* $(HOST_BUILD_DIR)/include/asm-powerpc/; \ rm -rf $(HOST_BUILD_DIR)/include/asm-ppc; \ ln -s $(HOST_BUILD_DIR)/include/asm-powerpc $(HOST_BUILD_DIR)/include/asm-ppc; \ @@ -62,12 +63,10 @@ ifneq ($(LINUX_HAS_HEADERS_INSTALL),) else define Host/Prepare/all mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include - cp -pLR \ - $(HOST_BUILD_DIR)/include/asm \ - $(HOST_BUILD_DIR)/include/asm-generic \ - $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH) \ - $(HOST_BUILD_DIR)/include/linux \ - $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ + cp -pLR $(HOST_BUILD_DIR)/include/asm $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ + cp -pLR $(HOST_BUILD_DIR)/include/asm-generic $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ + cp -pLR $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH) $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ + cp -pLR $(HOST_BUILD_DIR)/include/linux $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ endef endif