diff options
author | Memphiz <memphis@machzwo.de> | 2013-09-09 20:39:04 +0200 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2013-09-11 00:53:28 +0200 |
commit | f02e456f996cc44a18e15c95e53bfa9471e40a7c (patch) | |
tree | dc64bdbdabfe2517926ba4eda31edb7f97a7e9b2 /tools/depends/target/config.site.in | |
parent | 24665612e08b4226c7aeb3296ad508019df11203 (diff) |
[depends] - fix target config site script. It wants to set LD_LIBRARY_PATH to the deps dir not to the native buildtools. Found when trying to get ffmpeg gnutls to work. On osx ffmpeg tried to pull in libz from native dir instead of system toolchain because ld_library_path was set wrong
Diffstat (limited to 'tools/depends/target/config.site.in')
-rw-r--r-- | tools/depends/target/config.site.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/config.site.in b/tools/depends/target/config.site.in index 207748abf0..f7f9583841 100644 --- a/tools/depends/target/config.site.in +++ b/tools/depends/target/config.site.in @@ -32,7 +32,7 @@ export NASM=@prefix@/@tool_dir@/bin/yasm export MYSQL_CONFIG=@prefix@/@deps_dir@/bin/mysql_config PATH=@prefix@/@tool_dir@/bin:@use_toolchain@/usr/bin:@use_toolchain@/bin:$PATH -LD_LIBRARY_PATH=@prefix@/@tool_dir@/lib:$LD_LIBRARY_PATH +LD_LIBRARY_PATH=@prefix@/@deps_dir@/lib:$LD_LIBRARY_PATH PYTHON_VERSION=2.6 PYTHON_LDFLAGS="-L@prefix@/@deps_dir@/lib -lpython${PYTHON_VERSION} -lc -ldl -lm -lexpat -lffi -lintl -lutil -lssl -lcrypto" |