summaryrefslogtreecommitdiffstats
path: root/cpukit/configure.ac
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-05-01 16:43:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-05-01 16:43:58 +0000
commitbd878476b548fd981f5af35b6a0b574425159caa (patch)
tree4daadd5c8c9cc392768ed9ff63ef020688905765 /cpukit/configure.ac
parent2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-bd878476b548fd981f5af35b6a0b574425159caa.tar.bz2
2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Add missing "&&".
Diffstat (limited to 'cpukit/configure.ac')
-rw-r--r--cpukit/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index e6f2c68f8b..6957271dea 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -270,9 +270,9 @@ AM_CONDITIONAL(HAS_PTHREADS,test x"$rtems_cv_HAS_POSIX_API" = x"yes")
AM_CONDITIONAL(LIBITRON,test x"$rtems_cv_HAS_ITRON_API" = x"yes")
AM_CONDITIONAL(LIBNETWORKING,test x"$rtems_cv_HAS_NETWORKING" = x"yes")
AM_CONDITIONAL([LIBHTTPD],[test x"$rtems_cv_HAS_NETWORKING" = xyes \
-test x"$enable_httpd" = xyes])
+&& test x"$enable_httpd" = xyes])
AM_CONDITIONAL([LIBSHTTPD],[test x"$rtems_cv_HAS_NETWORKING" = xyes \
-test x"$enable_shttpd" = xyes])
+&& test x"$enable_shttpd" = xyes])
AM_CONDITIONAL([NEED_SYS_CDEFS_H],[test x"$NEED_SYS_CDEFS_H" = x"yes"])
AM_CONDITIONAL([NEED_SYS_QUEUE_H],[test x"$NEED_SYS_QUEUE_H" = x"yes"])