diff mx/commands.py @ 3736:d3ec27ea1b20

Work with GRAAL environment variable instead of MAXINE environment variable.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 17 Dec 2011 20:48:46 +0100
parents 3e2e8b8abdaf
children 34527a24bcf8
line wrap: on
line diff
--- a/mx/commands.py	Sat Dec 17 20:36:28 2011 +0100
+++ b/mx/commands.py	Sat Dec 17 20:48:46 2011 +0100
@@ -244,7 +244,7 @@
     build = env.vmbuild
     if env.java_dbg:
         args = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000'] + args
-    os.environ['MAXINE'] = env.check_get_env('GRAAL_HOME')
+    os.environ['GRAAL'] = join(env.check_get_env('GRAAL_HOME'), 'graal')
     exe = join(_jdk7(env, build), 'bin', env.exe_suffix('java'))
     return env.run([exe, vm] + args)