From 385d9947092e27e044e7e9037de5a4613ece96ee Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Mon, 31 Dec 2012 14:24:47 +0000 Subject: [PATCH] efl: fix valgrind check. wrong variable name, thanks Doug Newgard for spotting it. SVN revision: 81932 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c35e2e38a4..931384656e 100644 --- a/configure.ac +++ b/configure.ac @@ -759,7 +759,7 @@ EFL_ADD_LIBS([EINA], [-lm]) ## Options # Valgrind -if test "x${have_valgrind}" = "xno"; then +if test "${want_valgrind}" = "no"; then AC_DEFINE([NVALGRIND], [1], [Valgrind support disabled]) else PKG_CHECK_MODULES([VALGRIND], [valgrind >= 2.4.0])