mirror of
https://github.com/Relintai/osxcross.git
synced 2025-03-09 07:46:59 +01:00
Wrapper: Only create a dsymutil symlink if dsymutil is not in PATH
This commit is contained in:
parent
d3392f4eae
commit
5819953299
@ -171,7 +171,10 @@ create_wrapper_link pkg-config
|
|||||||
|
|
||||||
if [ "$PLATFORM" != "Darwin" ]; then
|
if [ "$PLATFORM" != "Darwin" ]; then
|
||||||
create_wrapper_link sw_vers 1
|
create_wrapper_link sw_vers 1
|
||||||
create_wrapper_link dsymutil 1
|
which dsymutil &>/dev/null
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
create_wrapper_link dsymutil 1
|
||||||
|
fi
|
||||||
create_wrapper_link xcrun 1
|
create_wrapper_link xcrun 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user