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 ned.deily
Recipients aft, ezio.melotti, loewis, ned.deily, ronaldoussoren
Date 2012-04-17.03:23:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334632994.99.0.272005289764.issue14602@psf.upfronthosting.co.za>
In-reply-to
Content
The problem you are seeing is due to two separate issues.  (1) The first time you build Python 3 in a particular build directory, the Abstract Syntax Definition Language (asdl) parser build step may be unnecessarily run by "make" if the time stamps of the source files are not preserved, for example, for an initial clone of a repo using hg.  The parser step requires the use of an existing Python on your system.  It appears you a Python 2.7 installed and first on the your shell $PATH.  Unfortunately, that causes you to run into the second issue, which was documented in Issue9516, a bug in the initial releases of Python 2.7.x.  The fix for that issue is now released in Python 2.7.3, so that the interpreter on OS X is no longer incorrectly checking MACOSX_DEPLOYMENT_TARGET settings.  So, among other solutions, you can either update to Python 2.7.3 or remove it from your PATH during the initial build (until the asdl target is up-to-date).
History
Date User Action Args
2012-04-17 03:23:15ned.deilysetrecipients: + ned.deily, loewis, ronaldoussoren, ezio.melotti, aft
2012-04-17 03:23:14ned.deilysetmessageid: <1334632994.99.0.272005289764.issue14602@psf.upfronthosting.co.za>
2012-04-17 03:23:14ned.deilylinkissue14602 messages
2012-04-17 03:23:14ned.deilycreate