summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
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])
])