aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-08-30 13:19:17 +0000
committerChristian Grothoff <christian@grothoff.org>2010-08-30 13:19:17 +0000
commit190d294e3c9aa487ba03562b8bb32d4cf6f54948 (patch)
tree802d3a1eb140c999605f86869b1de5dea7404afc
parent8d3eedfe27c1c58392f6f435a121733ca0850fed (diff)
downloadgnunet-190d294e3c9aa487ba03562b8bb32d4cf6f54948.tar.gz
gnunet-190d294e3c9aa487ba03562b8bb32d4cf6f54948.zip
fix
-rw-r--r--configure.ac14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 9817a4f34..8742605d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -705,14 +705,14 @@ AC_SUBST(EXT_LIB_PATH)
705 705
706 706
707# should 'make check' run tests? 707# should 'make check' run tests?
708AC_MSG_CHECKING(whether to disable running tests) 708AC_MSG_CHECKING(whether to run tests)
709AC_ARG_ENABLE(testruns, 709AC_ARG_ENABLE(testruns,
710 [AS_HELP_STRING([--enable-test-suppression], 710 [AS_HELP_STRING([--enable-testruns=yes/no],
711 [disable running tests on make check])], 711 [disable running tests on make check (default is YES)])],
712 [disable_tests_run=$enableval], 712 [enable_tests_run=$enableval],
713 [disable_tests_run="no"]) 713 [enable_tests_run="yes"])
714AC_MSG_RESULT($disable_test_run) 714AC_MSG_RESULT($enable_test_run)
715AM_CONDITIONAL([DISABLE_TEST_RUN], [test "x$disable_tests_run" = "xyes"]) 715AM_CONDITIONAL([DISABLE_TEST_RUN], [test "x$enable_tests_run" = "xno"])
716 716
717# should experimental code be compiled (code that may not yet compile)? 717# should experimental code be compiled (code that may not yet compile)?
718disable_experimental=yes 718disable_experimental=yes