summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-01 11:14:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-01 11:14:03 +0000
commitb815d9e8fae43d6c82d7cea42a8f688701cf49bf (patch)
treec58204d115a3b2b0a73a24bdc8340c1caabbb235
parent2005-01-01 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b815d9e8fae43d6c82d7cea42a8f688701cf49bf.tar.bz2
2005-01-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Use AS_HELP_STRING instead of AC_HELP_STRING.
-rw-r--r--c/src/lib/libbsp/m68k/ods68302/ChangeLog4
-rw-r--r--c/src/lib/libbsp/m68k/ods68302/configure.ac3
2 files changed, 5 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/m68k/ods68302/ChangeLog b/c/src/lib/libbsp/m68k/ods68302/ChangeLog
index e3c11d9f35..692e683cc2 100644
--- a/c/src/lib/libbsp/m68k/ods68302/ChangeLog
+++ b/c/src/lib/libbsp/m68k/ods68302/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-01 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * configure.ac: Use AS_HELP_STRING instead of AC_HELP_STRING.
+
2004-11-25 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
diff --git a/c/src/lib/libbsp/m68k/ods68302/configure.ac b/c/src/lib/libbsp/m68k/ods68302/configure.ac
index e20275b16d..507118f488 100644
--- a/c/src/lib/libbsp/m68k/ods68302/configure.ac
+++ b/c/src/lib/libbsp/m68k/ods68302/configure.ac
@@ -16,8 +16,7 @@ RTEMS_CANONICALIZE_TOOLS
RTEMS_PROG_CCAS
AC_ARG_ENABLE(ods68302-debug,
-[AC_HELP_STRING([--enable-ods68302-debug],
- [whether to support bsp debugging])],
+[AS_HELP_STRING(--enable-ods68302-debug,whether to support bsp debugging)],
[case $enable_ods68302_debug in
yes ) ODS68302_DEBUG=yes;;
* ) ODS68302_DEBUG=no;;