[issue17031] fix running regen in cross builds

2013-01-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset ff5cf42136b3 by doko in branch '3.3': - Issue #17031: Fix running regen in cross builds. http://hg.python.org/cpython/rev/ff5cf42136b3 New changeset 1942987921e9 by doko in branch 'default': - Issue #17031: Fix running regen in cross builds. http://

[issue17031] fix running regen in cross builds

2013-01-25 Thread Matthias Klose
Changes by Matthias Klose : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ P

[issue17031] fix running regen in cross builds

2013-01-25 Thread Éric Araujo
Éric Araujo added the comment: Not an autotools expert, but patch looks good. Apparently 3.3 is still open to such changes. -- nosy: +eric.araujo ___ Python tracker ___ ___

[issue17031] fix running regen in cross builds

2013-01-25 Thread Matthias Klose
New submission from Matthias Klose: currently regen calls the python interpreter for the host, not the build machine. You can't directly use BUILD_FOR_PYTHON, because this one uses ./python explicitly, so use BUILDPYTHON instead. I'd like to see this for 3.3 and the trunk. -- assignee