diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-02-13 21:54:52 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-02-13 21:54:52 +0000 |
commit | 98c22539f2f4b96857be65a5a2797e4707451f2e (patch) | |
tree | 80355a10d5119301443a07fcc54f02e9f96ea8ad /lldb/scripts/Python/finishSwigPythonLLDB.py | |
parent | baa6bc378fb298392c55bf0243b961c07b107c0e (diff) | |
download | llvm-98c22539f2f4b96857be65a5a2797e4707451f2e.zip llvm-98c22539f2f4b96857be65a5a2797e4707451f2e.tar.gz llvm-98c22539f2f4b96857be65a5a2797e4707451f2e.tar.bz2 |
Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments
llvm-svn: 229159
Diffstat (limited to 'lldb/scripts/Python/finishSwigPythonLLDB.py')
-rw-r--r-- | lldb/scripts/Python/finishSwigPythonLLDB.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/finishSwigPythonLLDB.py b/lldb/scripts/Python/finishSwigPythonLLDB.py index 242de6a..4f9b313 100644 --- a/lldb/scripts/Python/finishSwigPythonLLDB.py +++ b/lldb/scripts/Python/finishSwigPythonLLDB.py @@ -391,7 +391,7 @@ def make_symlink_darwin_debug( vDictArgs, vstrFrameworkPythonDir, vstrDarwinDebu else: strSrc = "bin/lldb-launcher"; - bOk, strErrMsg = make_symlink( strSrc, strTarget ); + bOk, strErrMsg = make_symlink( vDictArgs, vstrFrameworkPythonDir, strSrc, strTarget ); return (bOk, strErrMsg); |