2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
authorNathanael Nerode <neroden@gcc.gnu.org>
Sat, 13 Mar 2004 05:54:47 +0000 (05:54 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Sat, 13 Mar 2004 05:54:47 +0000 (05:54 +0000)
            Paolo Bonzini  <bonzini@gnu.org>

PR bootstrap/14522
* configure.in: Cope with shells that do not support unquoted ^
* configure: Regenerate.

ChangeLog
configure
configure.in

index c033fc5aa63e6a70733ae652722f73ccfa08a2c1..b8d3dc1fd84b06edb0e4d081f4bbb133dab5cef1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
             Paolo Bonzini  <bonzini@gnu.org>
 
index 166966545d35fc7f7ec9c5acc01c1aa7158d11db..b397bf1ce9b11083ec4340d169d03c6ca1be0baa 100755 (executable)
--- 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; }
index 1cf5adaac6f081f440b59d8c366c706a2d9c0dae..6fa30221c52dbf365fc52c7f16fc53db3895330b 100644 (file)
@@ -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}])
This page took 0.038961 seconds and 4 git commands to generate.