summaryrefslogtreecommitdiffstats
path: root/configure
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
parentRemoved unused variable. (diff)
downloadrtems-16b5264d490b2412bcdc0c137aa82c9d6169c4a9.tar.bz2
Switched sense of tests configure flag to really be off by default.
Diffstat (limited to 'configure')
-rw-r--r--configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 52d174ca48..e58966cd6c 100644
--- a/configure
+++ b/configure
@@ -3397,13 +3397,13 @@ fi
# If the tests are enabled, then find all the test suite Makefiles
echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6
echo "configure:3400: checking if the test suites are enabled? " >&5
-tests_enabled=yes
+tests_enabled=no
# Check whether --enable-tests or --disable-tests was given.
if test "${enable_tests+set}" = set; then
enableval="$enable_tests"
\
case "${enableval}" in
- yes) echo "$ac_t""yes" 1>&6 ;;
+ yes) echo "$ac_t""yes" 1>&6 ; tests_enabled=yes ;;
no) echo "$ac_t""no" 1>&6 ; tests_enabled=no ;;
*) { echo "configure: error: bad value ${enableval} for tests option" 1>&2; exit 1; } ;;
esac