summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-24 09:29:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-24 09:29:24 +0000
commitc736dcfb0a541b1415ec1703ec360e61b47771b0 (patch)
treebaf39ff44431556d29c4ff40219a1bf8b2dbe7e4
parent2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c736dcfb0a541b1415ec1703ec360e61b47771b0.tar.bz2
2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-bootcard-options.m4: Fix quoting.
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/aclocal/bsp-bootcard-options.m44
2 files changed, 6 insertions, 2 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index 786ffc8b9c..4a0955738b 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,3 +1,7 @@
+2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * aclocal/bsp-bootcard-options.m4: Fix quoting.
+
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-bootcard-options.m4: New file.
diff --git a/c/src/aclocal/bsp-bootcard-options.m4 b/c/src/aclocal/bsp-bootcard-options.m4
index 80972abe79..41e2ea9a67 100644
--- a/c/src/aclocal/bsp-bootcard-options.m4
+++ b/c/src/aclocal/bsp-bootcard-options.m4
@@ -10,10 +10,10 @@ dnl
dnl To be used in bsp-configure scripts
-AC_DEFUN([BSP_BOOTCARD_OPTIONS],
+AC_DEFUN([BSP_BOOTCARD_OPTIONS],[
RTEMS_BSPOPTS_SET([BSP_DIRTY_MEMORY],[*],[0])
RTEMS_BSPOPTS_HELP([BSP_DIRTY_MEMORY],
[If defined, then PSIM will put a non-zero pattern into the RTEMS
Workspace and C program heap. This should assist in finding
code that assumes memory starts set to zero.])
-)
+])