summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-08 21:38:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-08 21:38:16 +0000
commit16b5264d490b2412bcdc0c137aa82c9d6169c4a9 (patch)
treeeb1bd5cccebd199c51b1c2e67ce32962cae325d7 /configure.in
parentRemoved unused variable. (diff)
downloadrtems-16b5264d490b2412bcdc0c137aa82c9d6169c4a9.tar.bz2
Switched sense of tests configure flag to really be off by default.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 104ffa2798..fc802ec9cb 100644
--- a/configure.in
+++ b/configure.in
@@ -429,11 +429,11 @@ fi
# If the tests are enabled, then find all the test suite Makefiles
AC_MSG_CHECKING([if the test suites are enabled? ])
-tests_enabled=yes
+tests_enabled=no
AC_ARG_ENABLE(tests, \
[ --enable-tests enable tests (default:disabled)], \
[case "${enableval}" in
- yes) AC_MSG_RESULT(yes) ;;
+ yes) AC_MSG_RESULT(yes) ; tests_enabled=yes ;;
no) AC_MSG_RESULT(no) ; tests_enabled=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
esac],