From 6afa6fc2132fbae4bbea410eb912e61a7af751bb Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 4 Jul 2019 15:36:17 -0400 Subject: [PATCH] Fix cryptest-autotools.sh on OS X Needed to remove quarantine bit --- TestScripts/cryptest-autotools.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh index 632cbee0..84ec59b0 100755 --- a/TestScripts/cryptest-autotools.sh +++ b/TestScripts/cryptest-autotools.sh @@ -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"