mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
9eacb73bce
commit
79b4b7d2fd
|
@ -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.
|
||||
|
||||
|
|
|
@ -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}])
|
||||
|
|
Loading…
Reference in New Issue