Use a single = in configure.in test

The ability to use == is an extension so use the more common =.
(cherry picked from commit 327e8d0ec0)
This commit is contained in:
Cary R 2009-03-25 14:47:18 -07:00 committed by Stephen Williams
parent a2ec51c411
commit 72c2e3f0ac
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ AC_ARG_WITH([valgrind], [AS_HELP_STRING([--with-valgrind],
[Add valgrind hooks])],
[], [check_valgrind=yes])
AS_IF([test "x$check_valgrind" == xyes],
AS_IF([test "x$check_valgrind" = xyes],
[AC_MSG_NOTICE([Not using valgrind hooks])],
[AC_CHECK_HEADER([valgrind/memcheck.h],
[AC_DEFINE([CHECK_WITH_VALGRIND], [1],