diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-08-21 20:51:46 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-08-21 20:51:46 +0000 |
commit | 4b31b15dfa8ecf5ac59b5dc2a3efae58fc98475b (patch) | |
tree | 8c76de285656561eef48f6cbb45710c7b9451d2a /include | |
parent | fe9d7531d8885ffec2e53b6139a597fecec3a25e (diff) | |
download | upstream-4b31b15dfa8ecf5ac59b5dc2a3efae58fc98475b.tar.gz upstream-4b31b15dfa8ecf5ac59b5dc2a3efae58fc98475b.tar.bz2 upstream-4b31b15dfa8ecf5ac59b5dc2a3efae58fc98475b.zip |
add 2 helper macros to deal with libtool madness
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8457 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk index 1691e68958..81296b8446 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 |