diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-04-17 14:44:50 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-04-17 14:44:50 +0000 |
commit | a2be758b46b5d06842d56c2bdacbdf409693fe7b (patch) | |
tree | 9d7983337ab9dd4990827a7cd07d8b98adb2c187 /package/libtool | |
parent | 3908f13bae0a6dcb5365fc2a48a0dc3891fc5a3e (diff) | |
download | upstream-a2be758b46b5d06842d56c2bdacbdf409693fe7b.tar.gz upstream-a2be758b46b5d06842d56c2bdacbdf409693fe7b.tar.bz2 upstream-a2be758b46b5d06842d56c2bdacbdf409693fe7b.zip |
add a workaround preventing libtool from hardcoding library path in shared libs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15246 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libtool')
-rw-r--r-- | package/libtool/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libtool/Makefile b/package/libtool/Makefile index 62895a8087..324025a295 100644 --- a/package/libtool/Makefile +++ b/package/libtool/Makefile @@ -41,6 +41,7 @@ define Build/InstallDev 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 define Package/libltdl/install |