changeset 21571:189d7a64b4d9

Truffle/Debugging: fix a python problem with the "sldebug" command
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 27 May 2015 16:36:03 -0700
parents fc376e0b80ba
children d6d7e51d9206
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Tue May 26 17:38:44 2015 -0700
+++ b/mx/mx_graal.py	Wed May 27 16:36:03 2015 -0700
@@ -2413,7 +2413,7 @@
 def sldebug(args):
     """run a simple command line debugger for the Simple Language"""
     vmArgs, slArgs = _extract_VM_args(args, useDoubleDash=True)
-    vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl.tools.debug"), "com.oracle.truffle.sl.tools.debug.SLREPLServer"] + slArgs)
+    vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl.tools"), "com.oracle.truffle.sl.tools.debug.SLREPLServer"] + slArgs)
 
 def isGraalEnabled(vm):
     return vm != 'original' and not vm.endswith('nograal')