From cf3104fd8d10d1b86a19136484b57d1b8c0131f7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 12 Oct 2005 23:22:34 +0000 Subject: [PATCH] remove pointless [] around if tests and make sure we quote properly for -z tests SVN revision: 17472 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 663ed76f7..be54ece8e 100644 --- a/configure.in +++ b/configure.in @@ -43,7 +43,7 @@ have_valgrind="no" PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0, have_valgrind=yes, have_valgrind=no) AC_ARG_ENABLE(valgrind, [ --enable-valgrind enable valgrind support], [ - if [ test "$enableval" = "yes" ]; then + if test x"$enableval" = x"yes" ; then AC_MSG_RESULT(yes) have_valgrind="yes" else