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:
parent
a2ec51c411
commit
72c2e3f0ac
|
|
@ -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],
|
||||
|
|
|
|||
Loading…
Reference in New Issue