[Lldb-commits] [lldb] r229159 - Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments

Ilia K ki.stfu at gmail.com
Fri Feb 13 13:54:52 PST 2015


Author: ki.stfu
Date: Fri Feb 13 15:54:52 2015
New Revision: 229159

URL: http://llvm.org/viewvc/llvm-project?rev=229159&view=rev
Log:
Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments


Modified:
    lldb/trunk/scripts/Python/finishSwigPythonLLDB.py

Modified: lldb/trunk/scripts/Python/finishSwigPythonLLDB.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/finishSwigPythonLLDB.py?rev=229159&r1=229158&r2=229159&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/finishSwigPythonLLDB.py (original)
+++ lldb/trunk/scripts/Python/finishSwigPythonLLDB.py Fri Feb 13 15:54:52 2015
@@ -391,7 +391,7 @@ def make_symlink_darwin_debug( vDictArgs
 	else:
 		strSrc = "bin/lldb-launcher";
 
-	bOk, strErrMsg = make_symlink( strSrc, strTarget );
+	bOk, strErrMsg = make_symlink( vDictArgs, vstrFrameworkPythonDir, strSrc, strTarget );
 
 	return (bOk, strErrMsg);
 





More information about the lldb-commits mailing list