re PR bootstrap/14522 (Bad sed command in the configure script)

2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>

        PR bootstrap/14522
        * configure.in: Fix esacping of $.
        * configure: Regenerate.

From-SVN: r79305
This commit is contained in:
Andrew Pinski 2004-03-11 07:31:40 +00:00 committed by Andrew Pinski
parent 11599d1450
commit 83c15dfcb6
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
PR bootstrap/14522
* configure.in: Fix esacping of $.
* configure: Regenerate.
2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
* configure: Regenerate, since I forgot to while committing Paolo's

2
configure vendored
View File

@ -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; }

View File

@ -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}])