Fix cryptest-autotools.sh on OS X

Needed to remove quarantine bit
pull/867/head
Jeffrey Walton 2019-07-04 15:36:17 -04:00
parent 6eeebaf26b
commit 6afa6fc213
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 8 additions and 0 deletions

View File

@ -122,6 +122,10 @@ chmod +w config.sub
mv config.sub.new config.sub
chmod +x config.sub
if [[ "$IS_DARWIN" -ne 0 ]]; then
xattrib -r com.apple.quarantine config.sub &>/dev/null
fi
echo "Updating config.guess"
wget -O config.guess.new -q --no-check-certificate 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess'
@ -130,6 +134,10 @@ chmod +w config.guess
mv config.guess.new config.guess
chmod +x config.guess
if [[ "$IS_DARWIN" -ne 0 ]]; then
xattrib -r com.apple.quarantine config.guess &>/dev/null
fi
#############################################################################
echo "Running configure"