1
0
Fork 0

build: Fix BUILD_TESTS condition check

This commit is contained in:
Emmanuele Bassi 2012-05-02 11:59:50 +01:00
parent 704928a807
commit 97563b640e

View file

@ -1091,7 +1091,7 @@ AC_ARG_ENABLE([tests],
[AS_HELP_STRING([--disable-tests], [Whether tests should be built])], [AS_HELP_STRING([--disable-tests], [Whether tests should be built])],
[], [],
[enable_tests=yes]) [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], AC_ARG_ENABLE([examples],
[AS_HELP_STRING([--disable-examples], [Whether examples should be built])], [AS_HELP_STRING([--disable-examples], [Whether examples should be built])],