summaryrefslogtreecommitdiff
path: root/include/package.mk
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2007-08-21 20:51:46 +0000
committerNicolas Thill <nico@openwrt.org>2007-08-21 20:51:46 +0000
commit5440728b06f5fd65a222e7dbab57596b39992451 (patch)
treec307e2f92f640bf48b34e3ce31712bf6ab90866e /include/package.mk
parent1e38527a525ca2e4dbe3a53dad63669773d3d15c (diff)
downloadmtk-20170518-5440728b06f5fd65a222e7dbab57596b39992451.zip
mtk-20170518-5440728b06f5fd65a222e7dbab57596b39992451.tar.gz
mtk-20170518-5440728b06f5fd65a222e7dbab57596b39992451.tar.bz2
add 2 helper macros to deal with libtool madness
SVN-Revision: 8457
Diffstat (limited to 'include/package.mk')
-rw-r--r--include/package.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk
index 1691e68..81296b8 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