diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-03-13 05:54:47 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-03-13 05:54:47 +0000 |
commit | 2e93c97146c56855dbf88d4d1ba9cd7ceaf4ab45 (patch) | |
tree | 6adb981bfed458eb70ae5f93674e8657eeed9ff6 /configure | |
parent | 12d64159c784e88f36f3de6d58009db854314546 (diff) | |
download | newlib-2e93c97146c56855dbf88d4d1ba9cd7ceaf4ab45.zip newlib-2e93c97146c56855dbf88d4d1ba9cd7ceaf4ab45.tar.gz newlib-2e93c97146c56855dbf88d4d1ba9cd7ceaf4ab45.tar.bz2 |
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.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |