diff mx/commands.py @ 6558:0a6d8857306d

arch is i86pc on solaris x64 boxes.
author Laurent Daynes <Laurent.Daynes@oracle.com>
date Fri, 19 Oct 2012 10:18:40 +0200
parents edea9ba7ac7b
children ef48be91f5fd
line wrap: on
line diff
--- 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)