summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2009-01-22 16:41:45 +0100
committerDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2009-01-22 16:41:45 +0100
commit1b20d287b9ff496a643c9256870c5cff0e3389f9 (patch)
treeafb73f0e510866702ecda15430ee547155ad684f /configure.ac
parentc65d3a9fb04d2c598b5c7fec3a060ec97eb778b9 (diff)
Fix logic thinko.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f659d49e..2b378c1b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -105,7 +105,7 @@ dnl Check whether to build tests by default (as compile-test) or not
AC_ARG_ENABLE([default-build-tests],
AS_HELP_STRING([--disable-default-build-tests], [Build test programs only during make check]))
-AM_CONDITIONAL([BUILD_TESTS_DEFAULT], [test "x$enable_default_build_tests" = "xno"])
+AM_CONDITIONAL([BUILD_TESTS_DEFAULT], [test "x$enable_default_build_tests" != "xno"])
# Native atomic operation support
AC_ARG_ENABLE([atomic-arm-linux-helpers],