aboutsummaryrefslogtreecommitdiff
path: root/ndkgdb.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2023-05-16 15:06:05 -0700
committerDan Albert <danalbert@google.com>2023-05-16 15:39:39 -0700
commit203193b8d983e6ce4186b416a3eeba244b0efdd6 (patch)
tree3e75183f12e7d12dd84b459e01380dd41b775e93 /ndkgdb.py
parentc06a4ac9fdff853ec5c18a0a3b5dfeb6b5765735 (diff)
downloadndk-203193b8d983e6ce4186b416a3eeba244b0efdd6.tar.gz
Restore accidentally deleted constant.
This was collateral damage when deleting the now unnecessary sys.path manipulation. Discovered while trying to make this lint cleanly. Bug: None Test: trying to get lint clean so I can reasonably write tests... Change-Id: I5bfb9a83482cc576e5f9da21056b5ca4c3804618
Diffstat (limited to 'ndkgdb.py')
-rwxr-xr-xndkgdb.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ndkgdb.py b/ndkgdb.py
index cd10b8cae..b4eb44e7a 100755
--- a/ndkgdb.py
+++ b/ndkgdb.py
@@ -32,6 +32,7 @@ import xml.etree.cElementTree as ElementTree
import adb
import gdbrunner
+NDK_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../.."))
def log(msg):
logger = logging.getLogger(__name__)