From f02e456f996cc44a18e15c95e53bfa9471e40a7c Mon Sep 17 00:00:00 2001 From: Memphiz Date: Mon, 9 Sep 2013 20:39:04 +0200 Subject: [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 --- tools/depends/target/config.site.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/depends/target/config.site.in') 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" -- cgit v1.2.3