# HG changeset patch # User Doug Simon # Date 1366901829 -7200 # Node ID 90ee20fd2c058e6f98fb1d395dc5c72f8ce6f715 # Parent 17b598df8da98447a90d1822612777d0f7729bc4 help text fix diff -r 17b598df8da9 -r 90ee20fd2c05 mx/commands.py --- a/mx/commands.py Thu Apr 25 16:53:29 2013 +0200 +++ b/mx/commands.py Thu Apr 25 16:57:09 2013 +0200 @@ -1361,7 +1361,7 @@ mx.add_argument('--' + c, action='store_const', dest='vmbuild', const=c, help='select the ' + c + ' build of the VM') mx.add_argument('--ecl', action='store_true', dest='make_eclipse_launch', help='create launch configuration for running VM execution(s) in Eclipse') mx.add_argument('--native-dbg', action='store', dest='native_dbg', help='Start the vm inside a debugger', metavar='') - mx.add_argument('--gdb', action='store_const', const='/usr/bin/gdb --args', dest='native_dbg', help='alias for --native-dbg /usr/bin/gdb -- args') + mx.add_argument('--gdb', action='store_const', const='/usr/bin/gdb --args', dest='native_dbg', help='alias for --native-dbg /usr/bin/gdb --args') commands.update({ 'export': [export, '[-options] [zipfile]'],