summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-01-10 12:00:03 +1100
committerKarolin Seeger <kseeger@samba.org>2013-04-02 21:02:44 +0200
commit0f174b74f37bf22639d22d083fef2692479fd6b1 (patch)
tree24d4c17552493901579b92c7901ae7700d9cf0f1
parent9ec44d4df48cc9fd25e97edde9b4a9e92a7c1559 (diff)
downloadsamba-0f174b74f37bf22639d22d083fef2692479fd6b1.tar.gz
build: Set LD_LIBRARY_PATH in install_with_python.sh
This ensures that the python install finishes correctly. Andrew Bartlett Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Thu Jan 10 14:00:13 CET 2013 on sn-devel-104 (cherry picked from commit 213e7260a83d4349132e8c159798b476cec3f814) Fix bug #9717 - install_with_python fix not yet in 4.0.x.
-rwxr-xr-xinstall_with_python.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/install_with_python.sh b/install_with_python.sh
index 47ff7801800..7b51e5c6691 100755
--- a/install_with_python.sh
+++ b/install_with_python.sh
@@ -14,6 +14,8 @@ shift
PATH=$PREFIX/python/bin:$PATH
export PATH
+LD_LIBRARY_PATH=$PREFIX/python/lib:$LD_LIBRARY_PATH
+export LD_LIBRARY_PATH
VERSION="Python-2.6.5"