diff options
| author | Andrea Corallo | 2023-11-22 16:30:01 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2023-11-22 16:34:13 +0100 |
| commit | cfd47e516fa36a130e0c02e3dd75eded86938445 (patch) | |
| tree | 4cc990d26410530c481c716c84cef81da90cf06f | |
| parent | 025cd2a9c213ee6e6f6506f586713c2b476fc053 (diff) | |
| download | emacs-cfd47e516fa36a130e0c02e3dd75eded86938445.tar.gz emacs-cfd47e516fa36a130e0c02e3dd75eded86938445.zip | |
* configure.ac: Fix non posix (bash only) eq operator
| -rw-r--r-- | configure.ac | 2 |
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 | ||
| 5152 | if test "${with_native_compilation}" == "default"; then | 5152 | if 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]) |