| Index: tools/utils.py
|
| ===================================================================
|
| --- tools/utils.py (revision 33485)
|
| +++ tools/utils.py (working copy)
|
| @@ -236,7 +236,10 @@
|
| if target_arch == 'x64':
|
| target_arch = 'ia32'
|
| print "GetBuildConf: Rewritten %s to %s\n" % (arch, target_arch)
|
| - cross_build = ''
|
| + if host_arch == 'x64':
|
| + target_arch = 'ia32'
|
| + print "GetBuildConf: Rewritten %s to %s\n" % (arch, host_arch)
|
| + cross_build = ''
|
| if host_arch != target_arch:
|
| print "GetBuildConf: Cross-build of %s on %s\n" % (arch, host_arch)
|
| cross_build = 'X'
|
|
|