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.

classification
Title: Python 2.3.3 won't build on MacOSX 10.2
Type: Stage:
Components: macOS Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen, kjohnson
Priority: normal Keywords:

Created on 2003-12-23 14:11 by kjohnson, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg19477 - (view) Author: Kent Johnson (kjohnson) * Date: 2003-12-23 14:11
Python 2.3.3 won't build out-of-the-box on MacOSX 10.2 
because Mac/OSX/Makefile is expecting xcodebuild instead of 
pbxbuild.

The fix is already there, just change the commenting on the 
lines

# For 10.2:
#PBXBUILD=pbxbuild
# For 10.3:
PBXBUILD=xcodebuild

This fix should either be handled automatically or documented 
in ./Mac/OSX/README

Thanks!
Kent
msg19478 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2004-06-03 14:41
Logged In: YES 
user_id=45365

This has been fixed for the next 2.3.X release: the Makefile now tests 
whether it should use pbxbuild or xcodebuild in stead of relying on the 
user uncommenting lines.
History
Date User Action Args
2022-04-11 14:56:01adminsetgithub: 39729
2003-12-23 14:11:19kjohnsoncreate