efl: fix valgrind check.

wrong variable name, thanks Doug Newgard for spotting it.


SVN revision: 81932
This commit is contained in:
Gustavo Sverzut Barbieri 2012-12-31 14:24:47 +00:00
parent b1c2b58bcf
commit 385d994709
1 changed files with 1 additions and 1 deletions

View File

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