Remove `lldb.root` and just look for the file we care about.
llvm-svn: 253679
diff --git a/lldb/packages/Python/lldbsuite/__init__.py b/lldb/packages/Python/lldbsuite/__init__.py
index dc02ad9..fb65606 100644
--- a/lldb/packages/Python/lldbsuite/__init__.py
+++ b/lldb/packages/Python/lldbsuite/__init__.py
@@ -11,7 +11,7 @@
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