changeset 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 297543799769
children d5f7e737827f
files mx/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)