Summary: | sci-libs/geos[python] fails to find Python library path | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
Component: | New packages | Assignee: | Sci-geo Project <sci-geosciences> |
Status: | RESOLVED INVALID | ||
Severity: | normal | CC: | pgsql-bugs, python |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: |
Build log
Build log |
Description
Diego Elio Pettenò (RETIRED)
![]() Created attachment 216266 [details]
Build log
Should be fixed. It is not :P Created attachment 219543 [details]
Build log
I can't reproduce the failure. Could you post the config.log? Thanks config.log won't help as it's not a compile test what it does: configure:23618: checking for python script directory configure:23626: result: ${prefix}/lib/python2.6/site-packages configure:23635: checking for python extension module directory configure:23643: result: ${exec_prefix}/lib/python2.6/site-packages configure:23689: checking for Python include path configure:23698: result: /usr/include/python2.6 configure:23709: checking for Python library path configure:23718: result: configure:23721: error: cannot find Python library path for i in "$base_python_path/lib/python$PYTHON_VERSION/config/" "$base_python_path/lib/python$PYTHON_VERSION/" "$base_python_path/lib/python/config/" "$base_python_path/lib/python/" "$base_python_path/" "$base_python_path/libs/" ; do python_path=`find $i -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"` if test -n "$python_path" ; then break fi done too bad that there is no libpython in those paths, it's directly in /usr/$(get_libdir). It seems to be a common bug in AM_PATH_PYTHON, as I've reported this to other packages as well. Caused by a broken findutils package. |