# HG changeset patch # User Laurent Daynes # Date 1350634720 -7200 # Node ID 0a6d8857306d14e4d0b6c6afb918a13d353e3dd4 # Parent 2975437997694c305ec2be2a9e9a3c0558a7a8a7 arch is i86pc on solaris x64 boxes. diff -r 297543799769 -r 0a6d8857306d mx/commands.py --- a/mx/commands.py Fri Oct 19 09:55:54 2012 +0200 +++ b/mx/commands.py Fri Oct 19 10:18:40 2012 +0200 @@ -276,7 +276,7 @@ def _arch(): machine = platform.uname()[4] - if machine in ['amd64', 'AMD64', 'x86_64']: + if machine in ['amd64', 'AMD64', 'x86_64', 'i86pc']: return 'amd64' mx.abort('unsupported or unknown machine type: ' + machine)