From ea107abd455a5878abdc7dad2581499ed18bfa45 Mon Sep 17 00:00:00 2001 From: eschnett Date: Mon, 24 Feb 2014 14:01:19 +0000 Subject: Attempt to avoid configure warning git-svn-id: http://svn.cactuscode.org/flesh/trunk@5093 17b73243-c579-4c4c-a9d2-2d5706c11dac --- lib/make/known-architectures/linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/make/known-architectures/linux b/lib/make/known-architectures/linux index 85eabcdb..689034dd 100644 --- a/lib/make/known-architectures/linux +++ b/lib/make/known-architectures/linux @@ -391,7 +391,7 @@ else major_version=`echo $CC_VERSION | cut -f3 -d' ' | cut -f1 -d'.'` minor_version=`echo $CC_VERSION | cut -f3 -d' ' | cut -f2 -d'.'` # only GCC versions 4.1 and higher support OpenMP - if test ! \( $major_version -lt 4 -o \( $major_version = 4 -a $minor_version -lt 1 \) \) ; then + if test ! \( $major_version -lt 4 -o \( $major_version -eq 4 -a $minor_version -lt 1 \) \) ; then : ${C_OPENMP_FLAGS='-fopenmp'} fi ;; -- cgit v1.2.3