diff mx/commands.py @ 6278:4f9574b2893e

removed dependence on private java.lang.String internals in HexCodeFile
author Doug Simon <doug.simon@oracle.com>
date Wed, 22 Aug 2012 11:20:04 +0200
parents 03c4c25ae726
children 633136426f26
line wrap: on
line diff
--- a/mx/commands.py	Wed Aug 22 11:00:31 2012 +0200
+++ b/mx/commands.py	Wed Aug 22 11:20:04 2012 +0200
@@ -954,9 +954,9 @@
 
     Run a tool over the input files to convert all embedded HexCodeFiles
     to a disassembled format."""
-    path = join(_graal_home, 'lib', 'hcfdis.jar')
+    path = join(_graal_home, 'lib', 'hcfdis-1.jar')
     if not exists(path):
-        mx.download(path, ['http://lafo.ssw.uni-linz.ac.at/hcfdis.jar'])
+        mx.download(path, ['http://lafo.ssw.uni-linz.ac.at/hcfdis-1.jar'])
     mx.run_java(['-jar', path] + args)
 
 def jacocoreport(args):