Use a single = in configure.in test

The ability to use == is an extension so use the more common =.
This commit is contained in:
Cary R
2009-03-26 11:45:11 -07:00
committed by Stephen Williams
parent cfb45e56e2
commit 327e8d0ec0
+1 -1
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],