From a81f2107362c30123a43e2a6481f93a85e475fc7 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 2 Apr 2009 11:50:31 +0000 Subject: [PATCH] =?UTF-8?q?2009-04-02=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * aclocal/check-rtems-debug.m4: Add missing ','. --- cpukit/ChangeLog | 4 ++++ cpukit/aclocal/check-rtems-debug.m4 | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 1cf58c750c..ff38efac61 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2009-04-02 Ralf Corsépius + + * aclocal/check-rtems-debug.m4: Add missing ','. + 2009-03-17 Sebastian Huber * libblock/src/ide_part_table.c: Fixed NULL pointer access. diff --git a/cpukit/aclocal/check-rtems-debug.m4 b/cpukit/aclocal/check-rtems-debug.m4 index d8d1818520..ef5c14efef 100644 --- a/cpukit/aclocal/check-rtems-debug.m4 +++ b/cpukit/aclocal/check-rtems-debug.m4 @@ -2,6 +2,6 @@ AC_DEFUN([RTEMS_CHECK_RTEMS_DEBUG], [AC_REQUIRE([RTEMS_ENABLE_RTEMS_DEBUG]) -AS_IF([test x"${enable_rtems_debug}" = x"yes"] +AS_IF([test x"${enable_rtems_debug}" = x"yes"], [AC_DEFINE_UNQUOTED(RTEMS_DEBUG,1,[if RTEMS_DEBUG is enabled])]) ])