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:
Isaac Clerencia Perez 2007-04-23 22:03:07 +00:00
parent 500c56fb13
commit a1aef025ce

View file

@ -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"