From dc75a88689447e67aa57847cde86039781782480 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Thu, 15 May 2014 23:55:10 +0200 Subject: [PATCH] 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. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index bcdef19..ef30241 100755 --- a/build.sh +++ b/build.sh @@ -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