 96e05e2e36
			
		
	
	96e05e2e36
	
	
	
		
			
			This breaks the package builds using the SDK.
The targets all build fine, but the package builder fails on many
packages. The package builder uses the OpenWrt SDK.
This reverts commit c377d874be.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # 
 | |
| # Copyright (C) 2008-2015 OpenWrt.org
 | |
| #
 | |
| # This is free software, licensed under the GNU General Public License v2.
 | |
| # See /LICENSE for more information.
 | |
| #
 | |
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=libtool
 | |
| PKG_CPE_ID:=cpe:/a:gnu:libtool
 | |
| PKG_VERSION:=2.4.2
 | |
| 
 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 | |
| PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
 | |
| PKG_HASH:=1d7b6862c1ed162e327f083a6f78f40eae29218f0db8c38393d61dab764c4407
 | |
| 
 | |
| HOST_BUILD_PARALLEL:=1
 | |
| 
 | |
| include $(INCLUDE_DIR)/host-build.mk
 | |
| 
 | |
| HOST_CONFIGURE_VARS += \
 | |
| 	lt_cv_sys_dlsearch_path=""
 | |
| 
 | |
| define Host/Prepare
 | |
| 	$(call Host/Prepare/Default)
 | |
| 	(cd $(STAGING_DIR_HOST)/share/aclocal/ && rm -f libtool.m4 ltdl.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4)
 | |
| 	(cd $(HOST_BUILD_DIR); $(AM_TOOL_PATHS) ./bootstrap)
 | |
| endef
 | |
| 
 | |
| define Host/Install
 | |
| 	$(MAKE) -C $(HOST_BUILD_DIR) install
 | |
| 	$(SED) 's,\(hardcode_into_libs\)=yes,\1=no,g' $(STAGING_DIR_HOST)/bin/libtool
 | |
| 	$(CP) $(STAGING_DIR_HOST)/bin/libtool $(STAGING_DIR_HOST)/bin/libtool-ucxx
 | |
| 	$(SED) 's,-lstdc++,-luClibc++,g' $(STAGING_DIR_HOST)/bin/libtool-ucxx
 | |
| endef
 | |
| 
 | |
| define Host/Clean
 | |
| 	-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
 | |
| 	$(call Host/Clean/Default)
 | |
| endef
 | |
| 
 | |
| $(eval $(call HostBuild))
 |