diff mx/mx_graal.py @ 14606:f50dece27798

fixed regression in gate command
author Doug Simon <doug.simon@oracle.com>
date Tue, 18 Mar 2014 23:50:46 +0100
parents 5953ac9e0d93
children af7b9b9a9a28
line wrap: on
line diff
--- a/mx/mx_graal.py	Tue Mar 18 22:58:14 2014 +0100
+++ b/mx/mx_graal.py	Tue Mar 18 23:50:46 2014 +0100
@@ -1057,8 +1057,8 @@
 
         for vmbuild in ['product', 'fastdebug']:
             for theVm in ['client', 'server']:
-                if not isVMSupported(vm):
-                    mx.log('The' + vm + ' VM is not supported on this platform')
+                if not isVMSupported(theVm):
+                    mx.log('The' + theVm + ' VM is not supported on this platform')
                     continue
                 with VM(theVm, vmbuild):
                     t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild)