Wrapper: Only create a dsymutil symlink if dsymutil is not in PATH

This commit is contained in:
Thomas Pöchtrager 2019-10-20 20:15:16 +02:00
parent d3392f4eae
commit 5819953299

View File

@ -171,7 +171,10 @@ create_wrapper_link pkg-config
if [ "$PLATFORM" != "Darwin" ]; then
create_wrapper_link sw_vers 1
which dsymutil &>/dev/null
if [ $? -ne 0 ]; then
create_wrapper_link dsymutil 1
fi
create_wrapper_link xcrun 1
fi