From 228f1c70d2b5dcf99bdcafbba72fc50dd6d67bc8 Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Mon, 9 Apr 2007 19:20:13 +0000 Subject: [PATCH] Stupid typo in shell script (detected by NetBSD/pkgsrc people) --- SRC/plugins/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SRC/plugins/configure.ac b/SRC/plugins/configure.ac index 3c0cf4f..f67666c 100644 --- a/SRC/plugins/configure.ac +++ b/SRC/plugins/configure.ac @@ -5,10 +5,10 @@ AM_INIT_AUTOMAKE(foreign) dnl TODO: write a XML-RPC plugin for Adamsnames' interface. See a first version in contrib/ AC_ARG_ENABLE(plugin, [ --enable-plugin=LIST Build only the following plugins], -[if test "$enableval" == "no"; then +[if test "$enableval" = "no"; then AC_MSG_ERROR([You cannot disable plugin support]) else - if test "$enableval" == "yes"; then + if test "$enableval" = "yes"; then AC_MSG_ERROR([You must indicate a list of plugins with this option]) else plugins=$enableval