From: Andre Noll Date: Mon, 14 Sep 2015 18:14:25 +0000 (+0200) Subject: build: Avoid bashism in configure.ac. X-Git-Tag: v0.5.5~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=0d6d325723b96bb227dfccc39196db4aa7d31ce1 build: Avoid bashism in configure.ac. '==' is not portable. In fact, NetBSD's /bin/sh complains about this. The fix is trivial. --- diff --git a/configure.ac b/configure.ac index 2edabc86..a30b0c20 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ AC_DEFUN([UNSTASH_FLAGS], [ LIBS="$OLD_LIBS" ]) AC_DEFUN([LIB_SUBST_FLAGS], [ - if test "$HAVE_[]m4_toupper([$1])" == 'yes'; then + if test "$HAVE_[]m4_toupper([$1])" = 'yes'; then AC_DEFINE(HAVE_[]m4_toupper([$1]), 1, define to 1 to turn on $1 support) else