From: Andrew Pinski Date: Thu, 11 Mar 2004 07:31:40 +0000 (+0000) Subject: re PR bootstrap/14522 (Bad sed command in the configure script) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83c15dfcb64648583484e25d6c5cb9a4b8ac77da;p=gcc.git 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 --- diff --git a/ChangeLog b/ChangeLog index 2376c1cb713..802d4fb1be8 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 b3adcc8347c..4e888695d37 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 485d8f3b6eb..b0b3aad1ec5 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}])