[Scummvm-git-logs] scummvm master -> aeb388891e1fa98867028f0e81a5a88c78ce3009

lephilousophe noreply at scummvm.org
Fri Sep 6 17:50:33 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
aeb388891e CONFIGURE: Fix missing parentheses


Commit: aeb388891e1fa98867028f0e81a5a88c78ce3009
    https://github.com/scummvm/scummvm/commit/aeb388891e1fa98867028f0e81a5a88c78ce3009
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-09-06T19:50:17+02:00

Commit Message:
CONFIGURE: Fix missing parentheses

Changed paths:
    configure


diff --git a/configure b/configure
index 802f484601e..40cd5a331cd 100755
--- a/configure
+++ b/configure
@@ -7106,8 +7106,8 @@ case $_host_cpu in
 		fi
 		_ext_neon=no
 		# SSE2 is always available on x86_64
-		if !(test "$have_clang" = yes && (test $_clang_major -gt 5) || (test $_clang_major -eq 5 && test $_clang_minor -gt 0)) &&
-		   !(test "$have_gcc" = yes && (test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9)); then
+		if !(test "$have_clang" = yes && ((test $_clang_major -gt 5) || (test $_clang_major -eq 5 && test $_clang_minor -gt 0))) &&
+		   !(test "$have_gcc" = yes && ((test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9))); then
 			# Need GCC 4.9+ or Clang 5.0+ for target pragma
 			_ext_avx2=no
 		fi




More information about the Scummvm-git-logs mailing list