Commit 2d6e1751 authored by Michael Feurstein's avatar Michael Feurstein Committed by Felix Paul Kühne

contribs: osx: additional check for SDKROOT location alternative

Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent eeb2dbd7
...@@ -150,6 +150,13 @@ check_macosx_sdk() ...@@ -150,6 +150,13 @@ check_macosx_sdk()
echo "SDKROOT not specified, assuming $SDKROOT" echo "SDKROOT not specified, assuming $SDKROOT"
fi fi
if [ ! -d "${SDKROOT}" ]
then
SDKROOT_NOT_FOUND=`xcode-select -print-path`/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$OSX_VERSION.sdk
SDKROOT=`xcode-select -print-path`/SDKs/MacOSX$OSX_VERSION.sdk
echo "SDKROOT not found at $SDKROOT_NOT_FOUND, trying $SDKROOT"
fi
if [ ! -d "${SDKROOT}" ] if [ ! -d "${SDKROOT}" ]
then then
echo "*** ${SDKROOT} does not exist, please install required SDK, or set SDKROOT manually. ***" echo "*** ${SDKROOT} does not exist, please install required SDK, or set SDKROOT manually. ***"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment