diff options
author | Wolfgang Ulbrich <[email protected]> | 2013-09-16 13:31:49 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2013-12-17 22:50:47 +0100 |
commit | 12a30fed6ef3b60b21459e5bca9f0d262d00d0f2 (patch) | |
tree | ae7192a3a61468c52d87264ada8daeda803c1520 | |
parent | ca582abbce72a381ee1a2c1e69a19aaa8498c6f7 (diff) | |
download | eom-12a30fed6ef3b60b21459e5bca9f0d262d00d0f2.tar.bz2 eom-12a30fed6ef3b60b21459e5bca9f0d262d00d0f2.tar.xz |
correct python libdir to avoid configure warnings for x86_64
DEBUG: checking whether Python support is requested... autodetect
DEBUG: checking for a Python interpreter with version >= 2.3... python
DEBUG: checking for python... /usr/bin/python
DEBUG: checking for python version... 2.7
DEBUG: checking for python platform... linux2
DEBUG: checking for python script directory... ${prefix}/lib/python2.7/site-packages
DEBUG: checking for python extension module directory... ${exec_prefix}/lib64/python2.7/site-packages
DEBUG: sed: can't read /usr/lib/python2.7/config/Makefile: No such file or directory
DEBUG: sed: can't read /usr/lib/python2.7/config/Makefile: No such file or directory
DEBUG: checking for PYGTK... yes
DEBUG: checking for pygobject defs... /usr/share/pygobject/2.0/defs
DEBUG: checking for pygtk defs... /usr/share/pygtk/2.0/defs
DEBUG: checking for pygobject codegen... /usr/bin/python /usr/share/pygobject/2.0/codegen/codegen.py
DEBUG: checking for pygobject h2def... /usr/bin/python /usr/share/pygobject/2.0/codegen/h2def.py
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 426f5b2..7e9a560 100644 --- a/configure.ac +++ b/configure.ac @@ -365,7 +365,7 @@ if test "x$have_python" != "xno"; then PYTHON_LIBS="-lpython$PYTHON_VERSION" PYTHON_LIB_LOC="-L$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config" PYTHON_CFLAGS="-I$PY_PREFIX/include/python$PYTHON_VERSION" - PYTHON_MAKEFILE="$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config/Makefile" + PYTHON_MAKEFILE="$libdir/python$PYTHON_VERSION/config/Makefile" PYTHON_BASEMODLIBS=`sed -n -e 's/^BASEMODLIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE` PYTHON_OTHER_LIBS=`sed -n -e 's/^LIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE` PYTHON_EXTRA_LIBS="$PYTHON_BASEMODLIBS $PYTHON_OTHER_LIBS" |