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.
This commit is contained in:
parent
76e4319948
commit
4b0ac75df4
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
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>
|
2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
|
||||||
Paolo Bonzini <bonzini@gnu.org>
|
Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -2278,7 +2278,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
esac
|
esac
|
||||||
done
|
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
|
if test "x$missing_languages" != x; then
|
||||||
{ echo "configure: error:
|
{ echo "configure: error:
|
||||||
The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; }
|
The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; }
|
||||||
|
|
|
@ -1177,7 +1177,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
esac
|
esac
|
||||||
done
|
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
|
if test "x$missing_languages" != x; then
|
||||||
AC_MSG_ERROR([
|
AC_MSG_ERROR([
|
||||||
The following requested languages were not found: ${missing_languages}])
|
The following requested languages were not found: ${missing_languages}])
|
||||||
|
|
Loading…
Reference in a new issue