# HG changeset patch # User Doug Simon # Date 1395183046 -3600 # Node ID f50dece277986082814364289a57ae2b641a9611 # Parent 5953ac9e0d93949a8315a4bfa64ce7ce39fefe80 fixed regression in gate command diff -r 5953ac9e0d93 -r f50dece27798 mx/mx_graal.py --- 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)