This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author matejcik
Recipients Arfrever, akitada, andybuckley, barry, belopolsky, catalin.iacob, christian.heimes, doko, eric.araujo, ivazquez, jafo, jcea, lemburg, matejcik, pitrou, tarek
Date 2013-11-07.15:40:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383838804.74.0.419435874456.issue1294959@psf.upfronthosting.co.za>
In-reply-to
Content
Yes. We still have a patch for two things:
1. fix setup.py script to look for libraries in correct (lib64) prefixes, and
2. fix values returned from sysconfig, to reflect that python resides in lib64

"$prefix/lib" is hardcoded in many places. Lib64 is probably not going away anytime soon, so it would be nice if this was solved once and for all ;)
The good thing is that with sysconfig, we don't have to do much beyond teaching sysconfig about the right values.

To reiterate, our current solution is to introduce "sys.lib" (and "sys.arch", but that is never used anymore) that is either "lib" or "lib64", and use this in place of the string "lib" wherever appropriate. We find the value for sys.lib through configure magic.
History
Date User Action Args
2013-11-07 15:40:05matejciksetrecipients: + matejcik, lemburg, barry, doko, jafo, jcea, belopolsky, pitrou, christian.heimes, tarek, ivazquez, eric.araujo, Arfrever, akitada, andybuckley, catalin.iacob
2013-11-07 15:40:04matejciksetmessageid: <1383838804.74.0.419435874456.issue1294959@psf.upfronthosting.co.za>
2013-11-07 15:40:04matejciklinkissue1294959 messages
2013-11-07 15:40:04matejcikcreate