From: Hamish Guthrie Date: Thu, 9 Oct 2008 11:33:47 +0000 (+0000) Subject: The merge of ppc (32-bit headers) and powerpc (previously 64-bit only headers) has... X-Git-Tag: v12.09~12990 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=31b995b49c3ffad7e57ed00a21d1fd607397cd04;hp=73e619b530765dd9e67a2f33fce132352ff251d3;p=openwrt-github%2F.git The merge of ppc (32-bit headers) and powerpc (previously 64-bit only headers) has now been completed, so it build breaks if asm-ppc headers directory does not exist - this should fix this problem without being invasive git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12933 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile index a182c83c1f..6e02fe9888 100644 --- a/toolchain/kernel-headers/Makefile +++ b/toolchain/kernel-headers/Makefile @@ -33,9 +33,11 @@ define Build/Configure/cris endef define Build/Configure/powerpc - $(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/ - rm -rf $(PKG_BUILD_DIR)/include/asm-ppc - ln -s $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc + if [ -d $(PKG_BUILD_DIR)/include/asm-ppc ]; then \ + $(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/; \ + rm -rf $(PKG_BUILD_DIR)/include/asm-ppc; \ + ln -s $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc; \ + fi endef ifneq (,$(findstring uml,$(BOARD)))