build: Fix BUILD_TESTS condition check
This commit is contained in:
parent
704928a807
commit
97563b640e
1 changed files with 1 additions and 1 deletions
|
@ -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])],
|
||||||
|
|
Loading…
Reference in a new issue