summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-02-25 19:22:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-02-25 19:22:58 +0000
commite1b7770144350ccc858edd2927b9f031097500d7 (patch)
tree921b36a993eb58f47239ec1357951235f9c326cf /configure.in
parentSuggestion from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to clarify (diff)
downloadrtems-e1b7770144350ccc858edd2927b9f031097500d7.tar.bz2
backed off previous change and switched to tests being disabled 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 ba70817e93..104ffa2798 100644
--- a/configure.in
+++ b/configure.in
@@ -431,13 +431,13 @@ fi
AC_MSG_CHECKING([if the test suites are enabled? ])
tests_enabled=yes
AC_ARG_ENABLE(tests, \
-[ --disble-tests disble tests], \
+[ --enable-tests enable tests (default:disabled)], \
[case "${enableval}" in
yes) AC_MSG_RESULT(yes) ;;
no) AC_MSG_RESULT(no) ; tests_enabled=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
esac],
-AC_MSG_RESULT(yes)
+AC_MSG_RESULT(no)
)
RTEMS_CHECK_MAKEFILE(c/src/tests/tools/$target_cpu)