Accepting symlinked tarballs in build.sh

This does not require copying or moving the SDK file in there, and the SDK can not be deleted by accident.
This commit is contained in:
TheAssassin 2014-05-15 23:55:10 +02:00
parent f8b828176d
commit dc75a88689

View File

@ -13,7 +13,7 @@ function guess_sdk_version()
file=
sdk=
guess_sdk_version_result=
sdkcount=`find tarballs/ -type f | grep MacOSX | wc -l`
sdkcount=`find -L tarballs/ -type f | grep MacOSX | wc -l`
if [ $sdkcount -eq 0 ]; then
echo no SDK found in 'tarballs/'. please see README.md
exit 1