Commit 79b4b7d2 by Eric Botcazou Committed by Paolo Bonzini

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

2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
            Paolo Bonzini  <bonzini@gnu.org>

	PR bootstrap/14522
	* configure.in: Cope with shells that do not support unquoted ^
	* configure: Regenerate.

Co-Authored-By: Paolo Bonzini <bonzini@gnu.org>

From-SVN: r79380
parent 9eacb73b
2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/14522
* configure.in: Cope with shells that do not support unquoted ^
* configure: Regenerate.
2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/14522
* configure.in: Cope with shell that do not support nesting
* configure.in: Cope with shells that do not support nesting
quotes inside quoted backquote substitutions.
* configure: Regenerate.
......
......@@ -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