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
This commit is contained in:
Eric Botcazou 2004-03-12 12:10:17 +00:00 committed by Paolo Bonzini
parent 9eacb73bce
commit 79b4b7d2fd
3 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
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.

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