summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/configure.ac4
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,5 +1,9 @@
2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * configure.ac: Add missing "&&".
+
+2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* libcsupport/Makefile.am: Add libcsupport/src/flockfile.c,
libcsupport/src/ftrylockfile.c, libcsupport/src/funlockfile.c.
* libcsupport/src/flockfile.c, libcsupport/src/ftrylockfile.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"])