From 98c22539f2f4b96857be65a5a2797e4707451f2e Mon Sep 17 00:00:00 2001 From: Ilia K Date: Fri, 13 Feb 2015 21:54:52 +0000 Subject: Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments llvm-svn: 229159 --- lldb/scripts/Python/finishSwigPythonLLDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/scripts/Python/finishSwigPythonLLDB.py') 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); -- cgit v1.1