[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/native-comp a59cc78 2/2: Simplify configure.ac removing unnecess
From: |
Andrea Corallo |
Subject: |
feature/native-comp a59cc78 2/2: Simplify configure.ac removing unnecessary empty parameters |
Date: |
Fri, 3 Jan 2020 11:56:03 -0500 (EST) |
branch: feature/native-comp
commit a59cc78fcb8df8acbf5139c2b4d2fada55627248
Author: Andrea Corallo <address@hidden>
Commit: Andrea Corallo <address@hidden>
Simplify configure.ac removing unnecessary empty parameters
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 717b456..9c8a6e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3743,7 +3743,7 @@ LIBGCCJIT_LIB=
COMP_OBJ=
if test "${with_nativecomp}" != "no"; then
AC_CHECK_HEADER(libgccjit.h,
- AC_CHECK_LIB(gccjit, gcc_jit_context_acquire, HAVE_NATIVE_COMP=yes, ,
-lgccjit))
+ AC_CHECK_LIB(gccjit, gcc_jit_context_acquire, HAVE_NATIVE_COMP=yes))
if test "${HAVE_NATIVE_COMP}" = "yes"; then
LIBGCCJIT_LIB="-lgccjit -ldl"
COMP_OBJ+=comp.o