summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-04-09 08:51:10 +0200
committerStef Walter <stefw@collabora.co.uk>2011-04-09 08:51:10 +0200
commitaf8002698e7c381024864da108c0ced10fe72e8b (patch)
tree881afa67c7f902e008fc24b57bfc59fcd8d631a0
parent8d2c4d90144d85937d31c7c5739cfa6594b3dbfb (diff)
downloadgnome-keyring-af8002698e7c381024864da108c0ced10fe72e8b.tar.gz
Fix the building of the tests when not explicitly enabled.
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index bf1fe611..43146013 100644
--- a/configure.in
+++ b/configure.in
@@ -531,9 +531,11 @@ if test "$enable_tests" != "no"; then
AC_MSG_RESULT(yes)
CFLAGS="$CFLAGS -Werror"
tests_status="yes"
+ enable_tests="yes"
else
AC_MSG_RESULT(no)
- tests_status="no"
+ tests_status="no"
+ enable_tests="no"
fi
AM_CONDITIONAL(WITH_TESTS, test "$enable_tests" = "yes")