comparison mx/commands.py @ 11415:c355f6b32fa6

fixed error message
author Doug Simon <doug.simon@oracle.com>
date Mon, 26 Aug 2013 11:15:26 +0200
parents 821ed0a436f2
children ece40b452e65
comparison
equal deleted inserted replaced
11414:ec21e399e4be 11415:c355f6b32fa6
284 answer = raw_input('Build it now? [Yn]: ') 284 answer = raw_input('Build it now? [Yn]: ')
285 if not answer.lower().startswith('n'): 285 if not answer.lower().startswith('n'):
286 with VM(vm, bld): 286 with VM(vm, bld):
287 build([]) 287 build([])
288 return 288 return
289 mx.abort('You need to run "mx --vm ' + vm + ' build ' + bld + '" to build the selected VM') 289 mx.abort('You need to run "mx --vm ' + vm + '--vmbuild ' + bld + ' build" to build the selected VM')
290 290
291 def _jdk(build='product', vmToCheck=None, create=False, installGraalJar=True): 291 def _jdk(build='product', vmToCheck=None, create=False, installGraalJar=True):
292 """ 292 """
293 Get the JDK into which Graal is installed, creating it first if necessary. 293 Get the JDK into which Graal is installed, creating it first if necessary.
294 """ 294 """