diff options
author | Zachary Turner <zturner@google.com> | 2015-11-20 17:40:57 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-20 17:40:57 +0000 |
commit | 4c152690be6986a69602977a3bac250efeb5bb11 (patch) | |
tree | e5cdba33492be6f1baf5575c58a36e3b5042aebe /lldb/packages/Python | |
parent | 543cb4c333bb92f14752884df2bd9d5274db7218 (diff) | |
download | bcm5719-llvm-4c152690be6986a69602977a3bac250efeb5bb11.tar.gz bcm5719-llvm-4c152690be6986a69602977a3bac250efeb5bb11.zip |
Remove `lldb.root` and just look for the file we care about.
llvm-svn: 253679
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/__init__.py b/lldb/packages/Python/lldbsuite/__init__.py index dc02ad9ab7c..fb65606923e 100644 --- a/lldb/packages/Python/lldbsuite/__init__.py +++ b/lldb/packages/Python/lldbsuite/__init__.py @@ -11,7 +11,7 @@ def find_lldb_root(): if lldb_root is None: return None - test_path = os.path.join(lldb_root, "lldb.root") + test_path = os.path.join(lldb_root, "use_lldb_suite_root.py") if os.path.isfile(test_path): return lldb_root return None |