Skip to content
Snippets Groups Projects
Unverified Commit d0342d2e authored by Maxim Cournoyer's avatar Maxim Cournoyer Committed by Maxim Cournoyer
Browse files

build.py: Streamline the gdb invocation.

There is no gdb.gdb init file in the repo, never was.

Change-Id: Ia1020ff037b5c6f36143cf63816027b0878f5b78
parent f69e9fa2
No related branches found
No related tags found
No related merge requests found
......@@ -466,11 +466,9 @@ def run_run(args):
f.write(str(client_process.pid)+'\n')
if args.debug:
subprocess.call(
['gdb', '-x', 'gdb.gdb', './install/daemon/lib/ring/dring'],
)
subprocess.call(['gdb', './install/daemon/lib/ring/dring'])
if args.background == False:
if not args.background:
dring_process.wait()
client_process.wait()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment