commit | 6382f1768a6bd1cda484737f7d59cde03bb5023c | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Fri Oct 02 15:58:05 2015 -0700 |
committer | Josh Gao <jmgao@google.com> | Fri Oct 02 15:58:57 2015 -0700 |
tree | 7161a78720c5d0623141b68564e2d9a5da9b61a6 | |
parent | 9c2057ab43eda5679906acde0329d82b8a942d50 [diff] [blame] |
Make gdbclient.py work in directories other than the root. Change-Id: I8e383052e15f41919c7107bf960092120d2c621c
diff --git a/scripts/gdbclient.py b/scripts/gdbclient.py index 4b7de2d..df924eb 100755 --- a/scripts/gdbclient.py +++ b/scripts/gdbclient.py
@@ -65,7 +65,7 @@ "{}/build/core/config.mk".format(root), "dumpvar-{}".format(variable)] - make_output = subprocess.check_output(make_args) + make_output = subprocess.check_output(make_args, cwd=root) return make_output.splitlines()[0]