summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-12 20:24:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-12 20:24:56 +0000
commit82f490f786d2d14f54399aa5313db140a0cc78d4 (patch)
tree9497ca30c57785ad51edf2216d1ad8c45e22be9d /aclocal
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>: (diff)
downloadrtems-82f490f786d2d14f54399aa5313db140a0cc78d4.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to correct the
--enable-tests problem a better way.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/enable-tests.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/aclocal/enable-tests.m4 b/aclocal/enable-tests.m4
index 626cd5d0fb..31419f597a 100644
--- a/aclocal/enable-tests.m4
+++ b/aclocal/enable-tests.m4
@@ -4,12 +4,12 @@ AC_DEFUN(RTEMS_ENABLE_TESTS,
[
# If the tests are enabled, then find all the test suite Makefiles
AC_MSG_CHECKING([if the test suites are enabled? ])
-tests_enabled=no
AC_ARG_ENABLE(tests,
[ --enable-tests enable tests (default:disabled)],
[case "${enableval}" in
- yes) AC_MSG_RESULT(yes) ;;
- no) AC_MSG_RESULT(no) ; tests_enabled=no ;;
+ yes) tests_enabled=yes ;;
+ no) tests_enabled=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
- esac], AC_MSG_RESULT(no))
+ esac], [tests_enabled=no])
+AC_MSG_RESULT([$tests_enabled])
])