diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-02-18 14:16:48 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-02-18 14:16:48 +0000 |
commit | 335c29ed0b60c4186764b71a716876658d74d9dc (patch) | |
tree | 88d2a5c199ef9c437c4a073122ae6ec26584d227 /lldb/scripts/Python/finishSwigPythonLLDB.py | |
parent | c0b7c80fe62881f41aa5f389fd13defd7e037cdd (diff) | |
download | bcm5719-llvm-335c29ed0b60c4186764b71a716876658d74d9dc.tar.gz bcm5719-llvm-335c29ed0b60c4186764b71a716876658d74d9dc.zip |
Fix typo in make_symlink after r229517. It fixes symlinks on a UNIX style platform.
llvm-svn: 229674
Diffstat (limited to 'lldb/scripts/Python/finishSwigPythonLLDB.py')
-rw-r--r-- | lldb/scripts/Python/finishSwigPythonLLDB.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/scripts/Python/finishSwigPythonLLDB.py b/lldb/scripts/Python/finishSwigPythonLLDB.py index fe12b286130..10996d442c9 100644 --- a/lldb/scripts/Python/finishSwigPythonLLDB.py +++ b/lldb/scripts/Python/finishSwigPythonLLDB.py @@ -326,7 +326,6 @@ def make_symlink( vDictArgs, vstrFrameworkPythonDir, vstrSrcFile, vstrTargetFile print strMsgSymlinkExists % vstrTargetFile; if bDbg: print strMsgSymlinkMk % (vstrTargetFile, strSrc, strTarget); - return (bOk, strErrMsg); bOk, strErrMsg = make_symlink_other_platforms( strSrc, strTarget ); |