From: nico Date: Tue, 21 Aug 2007 20:51:46 +0000 (+0000) Subject: add 2 helper macros to deal with libtool madness X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=cb11efc85b0b404eb4bf01cce6cd857e491f2628 add 2 helper macros to deal with libtool madness git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8457 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/package.mk b/include/package.mk index 1691e6895..81296b844 100644 --- a/include/package.mk +++ b/include/package.mk @@ -104,6 +104,18 @@ endif $(BuildIPKG) endef +# prevent libtool from setting rpath when linking +define Build/Fix/libtool/rpath + find $(PKG_BUILD_DIR) -name 'libtool' | xargs \ + $(SED) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g' +endef + +# prevent libtool from linking against host development libraries +define Build/Fix/libtool/libdir + find $(PKG_BUILD_DIR) -name '*.la' | xargs \ + $(SED) "s,^libdir='/usr/lib',libdir='$(STAGING_DIR)/usr/lib',g" +endef + define Build/Prepare $(call Build/Prepare/Default,) endef