[issue14330] do not use the host python for cross builds

2012-03-16 Thread Éric Araujo
Éric Araujo added the comment: + case $$MAKEFLAGS in *s*) quiet=-s; esac; \ Should be quiet=-q. make -s → setup.py -q -- nosy: +eric.araujo ___ Python tracker ___ ___

[issue14330] do not use the host python for cross builds

2012-03-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14330] do not use the host python for cross builds

2012-03-15 Thread Matthias Klose
New submission from Matthias Klose : for various tasks, the just built python for the host is used. this patch searches for a suitable python for the build machine and uses it for the build. -- assignee: doko components: Cross-Build files: no-host-python-for-build.diff keywords: needs r