diff mx/commands.py @ 9166:0f3fe35513a0

renamed build variable used to make a Graal/non-Graal build from OMIT_GRAAL to INCLUDE_GRAAL and ensured it is only used internally
author Doug Simon <doug.simon@oracle.com>
date Tue, 16 Apr 2013 22:26:28 +0200
parents 45b37dcb24de
children e49300a46e88
line wrap: on
line diff
--- a/mx/commands.py	Fri Apr 12 16:02:41 2013 +0200
+++ b/mx/commands.py	Tue Apr 16 22:26:28 2013 +0200
@@ -702,9 +702,10 @@
                 runCmd.append('MAKE_VERBOSE=')
             env['JAVA_HOME'] = jdk
             if vm.endswith('nograal'):
-                env['OMIT_GRAAL'] = 'true'
+                env['INCLUDE_GRAAL'] = 'false'
                 env.setdefault('ALT_OUTPUTDIR', join(_graal_home, 'build-nograal', mx.get_os()))
             else:
+                env['INCLUDE_GRAAL'] = 'true'
                 env['GRAAL'] = join(_graal_home, 'graal') # needed for TEST_IN_BUILD
             env.setdefault('INSTALL', 'y')
             if mx.get_os() == 'solaris' :