Skip to content
Snippets Groups Projects
Commit 34837ea2 authored by Hamish Guthrie's avatar Hamish Guthrie
Browse files

The merge of ppc (32-bit headers) and powerpc (previously 64-bit only headers)...

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

SVN-Revision: 12933
parent efc3f8a1
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment