From e5b9ffb6373c9564c25f0a42463de32e69759c55 Mon Sep 17 00:00:00 2001 From: "Robert D. Blanchet Jr" Date: Sun, 17 Feb 2013 10:47:14 -0800 Subject: [PATCH] Fix non-framework python library path. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index bce1a301bb..5095fd5b58 100755 --- a/install.sh +++ b/install.sh @@ -34,7 +34,7 @@ function python_finder { else which_python=$(python -c 'import sys;print(sys.version)' | sed 's/^[ \t]*//') which_python="python${which_python:0:3}" - lib_python="${python_prefix}/lib/libpython${which_python}" + lib_python="${python_prefix}/lib/lib${which_python}" if [ -f "${lib_python}.a" ]; then python_library+="${lib_python}.a" else