emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master cfd47e516fa: * configure.ac: Fix non posix (bash only) eq operato


From: Andrea Corallo
Subject: master cfd47e516fa: * configure.ac: Fix non posix (bash only) eq operator
Date: Wed, 22 Nov 2023 10:34:54 -0500 (EST)

branch: master
commit cfd47e516fa36a130e0c02e3dd75eded86938445
Author: Andrea Corallo <acorallo@gnu.org>
Commit: Andrea Corallo <acorallo@gnu.org>

    * configure.ac: Fix non posix (bash only) eq operator
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index c3019564143..debc6d1078f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5149,7 +5149,7 @@ source on this site:
 
   with_native_compilation=no])
 
-if test "${with_native_compilation}" == "default"; then
+if test "${with_native_compilation}" = "default"; then
     # Check if libgccjit is available.
     AC_CHECK_LIB([gccjit], [gcc_jit_context_acquire],
       [], [libgccjit_not_found])



reply via email to

[Prev in Thread] Current Thread [Next in Thread]