From: Emmanuele Bassi Date: Wed, 2 May 2012 10:59:50 +0000 (+0100) Subject: build: Fix BUILD_TESTS condition check X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97563b640ec5207f28dea3605269f72cc318cc20;p=profile%2Fivi%2Fclutter.git build: Fix BUILD_TESTS condition check --- diff --git a/configure.ac b/configure.ac index fe9bbf0..ed40e8e 100644 --- a/configure.ac +++ b/configure.ac @@ -1091,7 +1091,7 @@ AC_ARG_ENABLE([tests], [AS_HELP_STRING([--disable-tests], [Whether tests should be built])], [], [enable_tests=yes]) -AM_CONDITIONAL(BUILD_TESTS, [test "x$enable_tests" = "xyes" && "x$enable_conformance" = "xyes"]) +AM_CONDITIONAL(BUILD_TESTS, [test "x$enable_tests" = "xyes" && test "x$enable_conformance" = "xyes"]) AC_ARG_ENABLE([examples], [AS_HELP_STRING([--disable-examples], [Whether examples should be built])],