提交 50625bf5 编写于 作者: R Richard Levitte

When building shared libraries, only ln -s when simple and full name differ

Fixes #5143
Reviewed-by: NTim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5144)
上级 44f23cd2
......@@ -994,8 +994,10 @@ EOF
EOF
} else {
$recipe .= <<"EOF";
rm -f $target
ln -s $target_full $target
if [ '$target' != '$target_full' ]; then \\
rm -f $target; \\
ln -s $target_full $target; \\
fi
EOF
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册