From 83c15dfcb64648583484e25d6c5cb9a4b8ac77da Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Thu, 11 Mar 2004 07:31:40 +0000 Subject: [PATCH] re PR bootstrap/14522 (Bad sed command in the configure script) 2004-03-10 Andrew Pinski PR bootstrap/14522 * configure.in: Fix esacping of $. * configure: Regenerate. From-SVN: r79305 --- ChangeLog | 6 ++++++ configure | 2 +- configure.in | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2376c1cb7137..802d4fb1be8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-10 Andrew Pinski + + PR bootstrap/14522 + * configure.in: Fix esacping of $. + * configure: Regenerate. + 2004-03-11 Nathanael Nerode * configure: Regenerate, since I forgot to while committing Paolo's diff --git a/configure b/configure index b3adcc8347c9..4e888695d372 100755 --- a/configure +++ b/configure @@ -2278,7 +2278,7 @@ if test -d ${srcdir}/gcc; then esac done - missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,$//`" + missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,\$//`" if test "x$missing_languages" != x; then { echo "configure: error: The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; } diff --git a/configure.in b/configure.in index 485d8f3b6eb6..b0b3aad1ec54 100644 --- a/configure.in +++ b/configure.in @@ -1177,7 +1177,7 @@ if test -d ${srcdir}/gcc; then esac done - missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,$//`" + missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,\$//`" if test "x$missing_languages" != x; then AC_MSG_ERROR([ The following requested languages were not found: ${missing_languages}])