summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 12:11:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 12:11:32 +0000
commitfbe6a00c095f7307fda81d7985c5219086408518 (patch)
tree7cd00163ccbff98de7a9781b51d99e6d23a9ede7 /testsuites
parent2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-fbe6a00c095f7307fda81d7985c5219086408518.tar.bz2
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Fix config-variables of conditionally built subdirs.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/ChangeLog4
-rw-r--r--testsuites/configure.ac8
2 files changed, 8 insertions, 4 deletions
diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog
index 9419d016af..272f49b5e7 100644
--- a/testsuites/ChangeLog
+++ b/testsuites/ChangeLog
@@ -1,5 +1,9 @@
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * configure.ac: Fix config-variables of conditionally built subdirs.
+
+2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
+
* aclocal/check-itron.m4, aclocal/check-multiprocessing.m4,
aclocal/check-networking.m4, aclocal/check-posix.m4,
aclocal/check-tests.m4, aclocal/enable-itron.m4,
diff --git a/testsuites/configure.ac b/testsuites/configure.ac
index b7046ec83f..f62c34c4ef 100644
--- a/testsuites/configure.ac
+++ b/testsuites/configure.ac
@@ -36,18 +36,18 @@ esac
if test "$enable_tests" = "yes"; then
# do functionality tests first, then performance tests
AC_CONFIG_SUBDIRS(libtests sptests)
- if test "$rtems_cv_HAS_MULTIPROCESSING" = "yes"; then
+ if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
AC_CONFIG_SUBDIRS(mptests)
fi
- if test "$rtems_cv_HAS_POSIX_API" = "yes"; then
+ if test "$rtems_cv_RTEMS_POSIX_API" = "yes"; then
AC_CONFIG_SUBDIRS(psxtests)
fi
- if test "$rtems_cv_HAS_ITRON_API" = "yes"; then
+ if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(itrontests)
fi
# Now do performance tests
AC_CONFIG_SUBDIRS(tmtests)
- if test "$rtems_cv_HAS_ITRON_API" = "yes"; then
+ if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(tmitrontests)
fi
fi