Changeset 16b5264d in rtems
- Timestamp:
- 03/08/99 21:38:16 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 550b6da
- Parents:
- b02af64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb02af64 r16b5264d 3398 3398 echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6 3399 3399 echo "configure:3400: checking if the test suites are enabled? " >&5 3400 tests_enabled= yes3400 tests_enabled=no 3401 3401 # Check whether --enable-tests or --disable-tests was given. 3402 3402 if test "${enable_tests+set}" = set; then … … 3404 3404 \ 3405 3405 case "${enableval}" in 3406 yes) echo "$ac_t""yes" 1>&6 ; ;3406 yes) echo "$ac_t""yes" 1>&6 ; tests_enabled=yes ;; 3407 3407 no) echo "$ac_t""no" 1>&6 ; tests_enabled=no ;; 3408 3408 *) { echo "configure: error: bad value ${enableval} for tests option" 1>&2; exit 1; } ;; -
configure.in
rb02af64 r16b5264d 430 430 # If the tests are enabled, then find all the test suite Makefiles 431 431 AC_MSG_CHECKING([if the test suites are enabled? ]) 432 tests_enabled= yes432 tests_enabled=no 433 433 AC_ARG_ENABLE(tests, \ 434 434 [ --enable-tests enable tests (default:disabled)], \ 435 435 [case "${enableval}" in 436 yes) AC_MSG_RESULT(yes) ; ;436 yes) AC_MSG_RESULT(yes) ; tests_enabled=yes ;; 437 437 no) AC_MSG_RESULT(no) ; tests_enabled=no ;; 438 438 *) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
Note: See TracChangeset
for help on using the changeset viewer.