From: mirko Date: Mon, 20 Apr 2009 17:57:24 +0000 (+0000) Subject: prepare libtool for being build nativly (and therefore being able to build libtool... X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=ba25e57dccae7fe1a1ce693dcc25b5326b7c56b0 prepare libtool for being build nativly (and therefore being able to build libtool-required host-stuff within OpenWrt independent of libtool-version installed on the host-system), remove weird aclocal-copies git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15298 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/libtool/Makefile b/package/libtool/Makefile index 324025a29..699e537cb 100644 --- a/package/libtool/Makefile +++ b/package/libtool/Makefile @@ -17,6 +17,9 @@ PKG_MD5SUM:=d0071c890101fcf4f2be8934a37841b0 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +HOST_PATCH_DIR=/dev/null + +include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk CONFIGURE_PREFIX=$(STAGING_DIR)/host @@ -39,8 +42,6 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/include mv $(2)/lib/* $(1)/usr/lib/ mv $(2)/include/* $(1)/usr/include/ - $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal - $(CP) $(2)/share/aclocal/* $(STAGING_DIR_HOST)/share/aclocal/ $(SED) 's,\(hardcode_into_libs\)=yes,\1=no,g' $(2)/bin/libtool endef @@ -49,4 +50,5 @@ define Package/libltdl/install $(CP) $(PKG_BUILD_DIR)/libltdl/.libs/libltdl.so.* $(1)/usr/lib/ endef +$(eval $(call HostBuild)) $(eval $(call BuildPackage,libltdl))