mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
Remove stale reference to the lldb path component.
llvm-svn: 106509
This commit is contained in:
parent
5f9575c1cd
commit
a02199f5e7
@ -5,9 +5,10 @@ import math, os.path, re, sys, time, unittest
|
||||
|
||||
def setupSysPath():
|
||||
testPath = sys.path[0]
|
||||
rem = re.match("(^.*lldb/)test$", testPath)
|
||||
print "sys.path[0] =", testPath
|
||||
rem = re.match("(^.*/)test$", testPath)
|
||||
if not rem:
|
||||
print "This script expects to reside in .../lldb/test."
|
||||
print "This script expects to reside in .../test."
|
||||
sys.exit(-1)
|
||||
lldbBasePath = rem.group(1)
|
||||
lldbDebugPythonPath = "build/Debug/LLDB.framework/Resources/Python"
|
||||
|
Loading…
Reference in New Issue
Block a user