http://bugs.python.org/review/11715/diff/2283/5270 File setup.py (right): http://bugs.python.org/review/11715/diff/2283/5270#newcode376 setup.py:376: # self.build_temp Oops. I removed this debugging bit in ...
http://bugs.python.org/review/11715/diff/2283/5270
File setup.py (right):
http://bugs.python.org/review/11715/diff/2283/5270#newcode376
setup.py:376: # self.build_temp
Oops. I removed this debugging bit in my branch.
http://bugs.python.org/review/11715/diff/2283/5270#newcode380
setup.py:380: ret = os.system('dpkg-architecture -qDEB_HOST_MULTIARCH > %s' %
On 2011/04/01 00:17:19, loewis wrote:
> On my system, this produces an error message
>
> DEB_HOST_MULTIARCH ist kein unterstützter Variablenname at
> /usr/bin/dpkg-architecture line 214.
>
> It would be better if it was silent if nothing needs to be done.
Ah yes, good point. I changed this to:
ret = os.system(
'dpkg-architecture -qDEB_HOST_MULTIARCH > %s 2> /dev/null' %
tmpfile)
Issue 11715: Building Python on multiarch Debian and Ubuntu
Created 2 years, 1 month ago by barry
Modified 9 months, 2 weeks ago
Reviewers: loewis
Base URL: None
Comments: 3