Fix typo in make_symlink after r229517. It fixes symlinks on a UNIX style platform.

llvm-svn: 229674
This commit is contained in:
Ilia K
2015-02-18 14:16:48 +00:00
parent c0b7c80fe6
commit 335c29ed0b

View File

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