add 2 helper macros to deal with libtool madness
authorNicolas Thill <nico@openwrt.org>
Tue, 21 Aug 2007 20:51:46 +0000 (20:51 +0000)
committerNicolas Thill <nico@openwrt.org>
Tue, 21 Aug 2007 20:51:46 +0000 (20:51 +0000)
SVN-Revision: 8457

include/package.mk

index 89530616e4d28fea6b6bbadc40ce287603f1584b..b99f0c74cb8d25c754e63294743bc1810dc47224 100644 (file)
@@ -102,6 +102,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