From bd878476b548fd981f5af35b6a0b574425159caa Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 1 May 2010 16:43:58 +0000 Subject: [PATCH] =?UTF-8?q?2010-05-01=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * configure.ac: Add missing "&&". --- cpukit/ChangeLog | 4 ++++ cpukit/configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 63f46483f8..7ad209ca95 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2010-05-01 Ralf Corsépius + + * configure.ac: Add missing "&&". + 2010-05-01 Ralf Corsépius * libcsupport/Makefile.am: Add libcsupport/src/flockfile.c, 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"])