Skip to content
This repository has been archived by the owner on Sep 14, 2018. It is now read-only.

Commit

Permalink
Fix for tpoechtrager#13
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoechtrager committed Dec 1, 2015
1 parent 4f8ad51 commit 7d40549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usage_examples/ios_toolchain/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ if [ -z "$SDK_VERSION" ]; then
exit 1
fi
extract $1
SYSLIB=$(find $SDKDIR -name "libSystem.dylib" | head -n1)
SYSLIB=$(find $SDKDIR -name libSystem.dylib -o -name libSystem.tbd | head -n1)
if [ -z "$SYSLIB" ]; then
echo "SDK should contain libSystem.dylib" 1>&2
echo "SDK should contain libSystem{.dylib,.tbd}" 1>&2
exit 1
fi
SYSROOT="$(dirname $SYSLIB)/../.."
Expand Down

0 comments on commit 7d40549

Please sign in to comment.