From 1da0c520815c72986cb434ae8e18802007902437 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 28 Oct 2002 17:56:41 +0000 Subject: [PATCH] 2002-10-28 Ralf Corsepius * aclocal/enable-rtemsbsp.m4: Remove '\' in AC_MSG_ERROR (autoconf > 2.54 complains about). --- ChangeLog | 5 +++++ aclocal/enable-rtemsbsp.m4 | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 19afa5caf6..b5ee5b38f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-10-28 Ralf Corsepius + + * aclocal/enable-rtemsbsp.m4: Remove '\' in AC_MSG_ERROR + (autoconf > 2.54 complains about). + 2002-10-21 Joel Sherrill * VERSION: Updated to rtems-20021021-test. diff --git a/aclocal/enable-rtemsbsp.m4 b/aclocal/enable-rtemsbsp.m4 index a4c2114e59..2663c06dd4 100644 --- a/aclocal/enable-rtemsbsp.m4 +++ b/aclocal/enable-rtemsbsp.m4 @@ -10,7 +10,7 @@ AC_ARG_ENABLE(rtemsbsp, AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."], [BSPs to include in build]), [case "${enableval}" in - yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp=\"bsp1 bsp2\"]);; + yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp="bsp1 bsp2"]);; *) $1=$enableval;; esac],[$1=""]) ])