[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-18 Thread Éric Araujo
Éric Araujo added the comment: Final code looks OK to me. -- type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-lis

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 147ad02875fa by Jesus Cea in branch '3.2': And yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name http://hg.python.org/cpython/rev/147ad02875fa New changeset 582274636446 by

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: A trivial check-in causing a nightmare at 5AM just hours before a day-long offline trip :-). Eric, could you possibly review the committed version?. I can't use "platform.architecture()" because bootstrap issues. For instance: http://www.python.org/dev/buil

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4074439c3894 by Jesus Cea in branch '2.7': Yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name http://hg.python.org/cpython/rev/4074439c3894 New changeset 37efae3bf912 by Jes

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2ec4ab2a6f65 by Jesus Cea in branch '2.7': Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name http://hg.python.org/cpython/rev/2ec4ab2a6f65 New changeset 9d62f5aa35ff by Jesus Cea in br

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 284550d0d8ae by Jesus Cea in branch '2.7': Closes #13803: Under Solaris, distutils doesn't include bitness in the directory name http://hg.python.org/cpython/rev/284550d0d8ae New changeset eed73b16e71f by Jesus Cea in branch '3.2': Closes #13803:

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Éric Araujo
Éric Araujo added the comment: OK. from distutils.spawn import spawn from distutils import log from distutils.errors import DistutilsByteCompileError +import platform Please put that import higher up (with the other “import X”, before the “from X import Y”). +machine += ".%s"

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-17 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Proposed patch for Python 2.7: """ --- util.py.old 2011-12-12 01:34:04.412234183 +0100 +++ util.py 2012-01-17 15:15:23.262257886 +0100 @@ -12,6 +12,7 @@ from distutils.spawn import spawn from distutils import log from distutils.errors import DistutilsBy

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-16 Thread Jesús Cea Avión
New submission from Jesús Cea Avión : When compiling modules under Solaris, distutils generates directories like "build/lib.solaris-2.10-i86pc-3.2". The "i86pc" part is the same both in 32 and 64 bits. So when building 32 and 64 bit C code, the binaries are mixed and the best result you can g