Summary: | dev-libs/libxml2-2.9.9-r1 : under Python3.8, it installs into into /usr/lib64 instead of /usr/lib | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Helmut Jarausch <jarausch> |
Component: | Current packages | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
Status: | RESOLVED NEEDINFO | ||
Severity: | normal | CC: | jstein |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: | modified patch for configure.ac |
Description
Helmut Jarausch
2019-11-22 18:32:26 UTC
Which profile do you use? 17.0 or 17.1? Please recompile and *attach* the logfiles and paste the emerge info as described on https://wiki.gentoo.org/wiki/Attach_the_logs_to_the_bug_ticket We need to have all information at hand before ticket assignment, so that the maintainer can look after it in one session with minimal number of callbacks. Please reopen this ticket (Status:unconfirmed) afterwards. Created attachment 597158 [details, diff]
modified patch for configure.ac
(In reply to Jonas Stein from comment #1) > Which profile do you use? 17.0 or 17.1? > > Please recompile and > *attach* the logfiles and > paste the emerge info as described on > https://wiki.gentoo.org/wiki/Attach_the_logs_to_the_bug_ticket > We need to have all information at hand before ticket assignment, so that > the maintainer can look after it in one session with minimal number of > callbacks. > Please reopen this ticket (Status:unconfirmed) afterwards. I'm using 17.1 but the old configure.ac was broken. Here is the additional patch I've encorporated into ABIFLAG.patch -# does not work as it produce a /usr/lib/python path instead of/usr/lib64/python +# DOES work as it produce a /usr/lib/python path instead of/usr/lib64/python # -# PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_lib())"` + PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_lib())"` With this modified patch it installs fine. |