From: Nathanael Nerode Date: Sat, 13 Mar 2004 05:54:47 +0000 (+0000) Subject: 2004-03-12 Eric Botcazou X-Git-Tag: gprof-pre-ansify-2004-05-26~878 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b0ac75df43505a72ffa5e2ffbda9c6478d514f3;p=external%2Fbinutils.git 2004-03-12 Eric Botcazou Paolo Bonzini PR bootstrap/14522 * configure.in: Cope with shells that do not support unquoted ^ * configure: Regenerate. --- diff --git a/ChangeLog b/ChangeLog index c033fc5..b8d3dc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-12 Eric Botcazou + Paolo Bonzini + + PR bootstrap/14522 + * configure.in: Cope with shells that do not support unquoted ^ + * configure: Regenerate. + 2004-03-11 Eric Botcazou Paolo Bonzini diff --git a/configure b/configure index 1669665..b397bf1 100755 --- a/configure +++ b/configure @@ -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}])