From 6a8089d73ebab1a18ec098a47af4746c619ff17d Mon Sep 17 00:00:00 2001
From: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
Date: Wed, 7 Sep 2016 10:31:36 -0400
Subject: [PATCH] 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: Alexandre Viau <alexandre.viau@savoirfairelinux.com>
Change-Id: I5d319cd069bf4c9a95ffaa6b52470f612653679c
---
 make-ring.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make-ring.py b/make-ring.py
index 19524a85..af57cc20 100755
--- a/make-ring.py
+++ b/make-ring.py
@@ -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:
-- 
GitLab