[lldb] Remove unused variables.

Fixes the comment in https://reviews.llvm.org/D67993

llvm-svn: 373669
This commit is contained in:
Haibo Huang
2019-10-03 21:56:59 +00:00
parent 958091c209
commit 48b38c93bc

View File

@@ -371,16 +371,11 @@ def make_symlink(
vstrSrcFile,
vstrTargetFile):
dbg = utilsDebug.CDebugFnVerbose("Python script make_symlink()")
bOk = True
strErrMsg = ""
bDbg = "-d" in vDictArgs
strTarget = os.path.join(vstrFrameworkPythonDir, vstrTargetFile)
strTarget = os.path.normcase(strTarget)
strPrefix = vDictArgs['--prefix']
os.chdir(vstrFrameworkPythonDir)
bMakeFileCalled = "-m" in vDictArgs
eOSType = utilsOsType.determine_os_type()
strSrc = os.path.normcase(os.path.join(strPrefix, vstrSrcFile))
strRelSrc = os.path.relpath(strSrc, os.path.dirname(strTarget))