Commit 83c15dfc by Andrew Pinski Committed by Andrew Pinski

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
parent 11599d14
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
......
......@@ -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; }
......
......@@ -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}])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment