diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2004-03-12 12:10:17 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-03-12 12:10:17 +0000 |
commit | 79b4b7d2fd5e4b4ffd9db402bae96ac1f71c9154 (patch) | |
tree | 8179425b452ace972564d7e535d6b4532b947800 | |
parent | 9eacb73bcef51022e0b9e9ea1560e053cd8fe156 (diff) | |
download | gcc-79b4b7d2fd5e4b4ffd9db402bae96ac1f71c9154.zip gcc-79b4b7d2fd5e4b4ffd9db402bae96ac1f71c9154.tar.gz gcc-79b4b7d2fd5e4b4ffd9db402bae96ac1f71c9154.tar.bz2 |
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
-rw-r--r-- | ChangeLog | 9 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -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; } diff --git a/configure.in b/configure.in index 1cf5ada..6fa3022 100644 --- a/configure.in +++ b/configure.in @@ -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}]) |