remove pointless [] around if tests and make sure we quote properly for -z tests

SVN revision: 17472
This commit is contained in:
Mike Frysinger 2005-10-12 23:22:34 +00:00
parent de97fd5db9
commit cf3104fd8d
1 changed files with 1 additions and 1 deletions

View File

@ -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