mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1067037 - Split debugger arguments passed through --debugger-args. r=ted
This commit is contained in:
parent
4aa1784298
commit
870033d7ca
@ -123,7 +123,7 @@ def get_debugger_info(debugger, debuggerArgs = None, debuggerInteractive = False
|
||||
# Extend the default arguments for the chosen debugger with the ones passed in, if any.
|
||||
if debuggerArgs:
|
||||
# Append the provided debugger arguments at the end of the arguments list.
|
||||
debugger_arguments += [debuggerArgs];
|
||||
debugger_arguments += debuggerArgs.split()
|
||||
|
||||
# Override the default debugger interactive mode if needed.
|
||||
debugger_interactive = get_debugger_info('interactive', False)
|
||||
|
Loading…
Reference in New Issue
Block a user