Merge "Make gdbclient.py work in directories other than the root."

This commit is contained in:
Josh Gao
2015-10-02 23:23:42 +00:00
committed by Gerrit Code Review

View File

@@ -65,7 +65,7 @@ def dump_var(root, variable):
"{}/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]