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 | a8b74825361294993e6bdebdf2d0d26edf49b06d (patch) | |
tree | 84ade1bd1e6eaad6d442229b676a1c43e20128bf | |
parent | 028efe57a7090c6ca6d0894484198718b31b9dee (diff) | |
download | upstream-a8b74825361294993e6bdebdf2d0d26edf49b06d.tar.gz upstream-a8b74825361294993e6bdebdf2d0d26edf49b06d.tar.bz2 upstream-a8b74825361294993e6bdebdf2d0d26edf49b06d.zip |
add a workaround preventing libtool from hardcoding library path in shared libs
SVN-Revision: 15246
-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 |