Fix detection of python libraries,
for some reason the variable defined to cache the result of the python detection has changed and the code that invalidated the cache to be able to check several directories no longer worked because of that
This commit is contained in:
parent
500c56fb13
commit
a1aef025ce
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ if test "x$python" = "xyes"; then
|
|||
|
||||
found=no
|
||||
for pylibpath in '/usr/lib' $PYTHON_PREFIX/lib $PYTHON_PREFIX/lib/python$PYTHON_VERSION/config; do
|
||||
eval `echo unset ac_cv_lib_python$PYTHON_VERSION'_'Py_Finalize | tr '.' '_'`
|
||||
eval `echo unset ac_cv_lib_python$PYTHON_VERSION'___'Py_Finalize | tr '.' '_'`
|
||||
|
||||
save_LIBS=$LIBS
|
||||
LIBS="$LIBS -L$pylibpath"
|
||||
|
|
Loading…
Add table
Reference in a new issue