Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments

llvm-svn: 229159
This commit is contained in:
Ilia K
2015-02-13 21:54:52 +00:00
parent baa6bc378f
commit 98c22539f2

View File

@@ -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);