From 80e5eea72bb920e918d5184ded3c9b79638192fc Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Tue, 10 Apr 2018 15:09:04 +1200 Subject: Remove bashisms in configure.ac. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As found by Frédéric Fauberteau for NetBSD --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 61a9e4d9..9fb1f8c8 100644 --- a/configure.ac +++ b/configure.ac @@ -15,12 +15,12 @@ AC_PROG_MKDIR_P AM_MAINTAINER_MODE dnl Check if the compiler really supports `-std=c99`. -if test "x$ac_cv_prog_cc_c99" == xno; then +if test "x$ac_cv_prog_cc_c99" = xno; then AC_MSG_ERROR([$CC does not support '-std=c99'.]) fi dnl Enable compile warnings (only supporting GCC) -if test "x$GCC" == xyes; then +if test "x$GCC" = xyes; then WARN_CFLAGS="-Wall \ -Wstrict-prototypes \ -Wnested-externs \ -- cgit v1.2.1