From: Andrea Corallo Date: Fri, 3 Jan 2020 01:49:01 +0000 (+0100) Subject: Simplify configure.ac removing unnecessary empty parameters X-Git-Tag: emacs-28.0.90~2727^2~848 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a59cc78fcb8df8acbf5139c2b4d2fada55627248;p=emacs.git Simplify configure.ac removing unnecessary empty parameters --- diff --git a/configure.ac b/configure.ac index 717b4564999..9c8a6e3a9fc 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