From a2f461feb8189da74b24eb628be8827815b7a1bb Mon Sep 17 00:00:00 2001 From: knarf Date: Thu, 4 Aug 2011 05:44:39 +0000 Subject: don't rely on OPTIMISE or OPTIMIZE (both might not be defined), but use OPTIMISE_MODE, which is always provided by Cactus, and consistent with the other two git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@16 105869f7-3296-0410-a4ea-f4349344b45a --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index fa68cb1..b3135a1 100644 --- a/configure.sh +++ b/configure.sh @@ -26,7 +26,7 @@ esac # vectorisation macros depend on optimisation for efficient code; # without optimisation, the code is most likely much slower than # usual.) -case $(echo "x$OPTIMISE$OPTIMIZE" | tr '[:upper:]' '[:lower:]') in +case $(echo "x$OPTIMISE_MODE" | tr '[:upper:]' '[:lower:]') in (xyes) ;; # do nothing (xno) VECTORISE=0 ;; # disable vectorisation (*) echo "BEGIN ERROR" -- cgit v1.2.3