aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2023-11-22 16:30:01 +0100
committerAndrea Corallo2023-11-22 16:34:13 +0100
commitcfd47e516fa36a130e0c02e3dd75eded86938445 (patch)
tree4cc990d26410530c481c716c84cef81da90cf06f
parent025cd2a9c213ee6e6f6506f586713c2b476fc053 (diff)
downloademacs-cfd47e516fa36a130e0c02e3dd75eded86938445.tar.gz
emacs-cfd47e516fa36a130e0c02e3dd75eded86938445.zip
* configure.ac: Fix non posix (bash only) eq operator
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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:
5149 5149
5150 with_native_compilation=no]) 5150 with_native_compilation=no])
5151 5151
5152if test "${with_native_compilation}" == "default"; then 5152if test "${with_native_compilation}" = "default"; then
5153 # Check if libgccjit is available. 5153 # Check if libgccjit is available.
5154 AC_CHECK_LIB([gccjit], [gcc_jit_context_acquire], 5154 AC_CHECK_LIB([gccjit], [gcc_jit_context_acquire],
5155 [], [libgccjit_not_found]) 5155 [], [libgccjit_not_found])