comparison mx/commands.py @ 11395:a8e618fd8868

In verbose mode, if vmdir is set, output the directory where we are looking for the built jdk
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 22 Aug 2013 14:19:14 +0200
parents 66251d9f62ab
children 2d228d304247 e45b540b0ef2
comparison
equal deleted inserted replaced
11394:40c7cbe31aa9 11395:a8e618fd8868
342 hsdis([], copyToDir=_vmLibDirInJdk(jdk)) 342 hsdis([], copyToDir=_vmLibDirInJdk(jdk))
343 except SystemExit: 343 except SystemExit:
344 pass 344 pass
345 else: 345 else:
346 if not exists(jdk): 346 if not exists(jdk):
347 if _vmdir and mx._opts.verbose:
348 mx.log("Cound not find jdk dir at " + jdk)
347 _handle_missing_VM(build, vmToCheck if vmToCheck else 'graal') 349 _handle_missing_VM(build, vmToCheck if vmToCheck else 'graal')
348 350
349 if installGraalJar: 351 if installGraalJar:
350 _installGraalJarInJdks(mx.distribution('GRAAL')) 352 _installGraalJarInJdks(mx.distribution('GRAAL'))
351 353