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
This commit is contained in:
		| @@ -33,9 +33,11 @@ define Build/Configure/cris | |||||||
| endef | endef | ||||||
|  |  | ||||||
| define Build/Configure/powerpc | define Build/Configure/powerpc | ||||||
| 	$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/ | 	if [ -d $(PKG_BUILD_DIR)/include/asm-ppc ]; then \ | ||||||
| 	rm -rf $(PKG_BUILD_DIR)/include/asm-ppc | 		$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/; \ | ||||||
| 	ln -s $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc | 		rm -rf $(PKG_BUILD_DIR)/include/asm-ppc; \ | ||||||
|  | 		ln -s $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc; \ | ||||||
|  | 	fi | ||||||
| endef | endef | ||||||
|  |  | ||||||
| ifneq (,$(findstring uml,$(BOARD))) | ifneq (,$(findstring uml,$(BOARD))) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Hamish Guthrie
					Hamish Guthrie