Skip to content
Snippets Groups Projects
Commit 6a8089d7 authored by Stepan Salenikovich's avatar Stepan Salenikovich
Browse files

make-ring: fix dring path for launching in gdb


When launching with the --debug option, the path for dring was
wrong, it was the old path before the location of the binary was
changed.

Reviewed-by: default avatarAlexandre Viau <alexandre.viau@savoirfairelinux.com>
Change-Id: I5d319cd069bf4c9a95ffaa6b52470f612653679c
parent 20939600
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@ def run_run(args):
if args.debug:
subprocess.call(
['gdb','-x', 'gdb.gdb', './install/daemon/sbin/dring'],
['gdb','-x', 'gdb.gdb', './install/daemon/lib/ring/dring'],
)
if args.background == False:
......
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