From 5abdaa1cdabd8c6189ef836cdd19140800a974d7 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 9 Jun 2016 05:42:35 -0400 Subject: [PATCH] Make Sun Studio 12.3 default test target. 12.4 is broke at the moment --- cryptest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cryptest.sh b/cryptest.sh index 238e7773..2d708167 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -96,10 +96,10 @@ fi # Fixup if [ "$IS_SOLARIS" -ne "0" ]; then - if [ -e "/opt/solarisstudio12.4/bin/CC" ]; then - CXX=/opt/solarisstudio12.4/bin/CC - elif [ -e "/opt/solarisstudio12.3/bin/CC" ]; then + if [ -e "/opt/solarisstudio12.3/bin/CC" ]; then CXX=/opt/solarisstudio12.3/bin/CC + elif [ -e "/opt/solarisstudio12.4/bin/CC" ]; then + CXX=/opt/solarisstudio12.4/bin/CC fi fi SUN_COMPILER=$($CXX -V 2>&1 | egrep -i -c "CC: Sun")