configure.in (baseargs): Avoid using \| in sed regular expressions.
authorJakub Jelinek <jakub@redhat.com>
Fri, 17 Jan 2003 08:02:23 +0000 (09:02 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 17 Jan 2003 08:02:23 +0000 (09:02 +0100)
* configure.in (baseargs): Avoid using \| in sed regular
expressions.
* configure: Rebuilt.

From-SVN: r61431

ChangeLog
configure
configure.in

index f645b202819f76f26285fbb1f94971de7fd44fb7..056f0a3033f04d0c60e6f6c9d5eb179a73334618 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-01-17  Jakub Jelinek  <jakub@redhat.com>
+
+       * configure.in (baseargs): Avoid using \| in sed regular
+       expressions.
+       * configure: Rebuilt.
+
 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
 
        * configure.in (baseargs): Remove all supported forms of
index b44d1a849a1944dc98728193f83713ab27bd9ce2..035797812dc0817d08183678b17d5d81ca53ff46 100755 (executable)
--- a/configure
+++ b/configure
@@ -2452,11 +2452,16 @@ serialization_dependencies=serdep.tmp
 # down to subconfigures.
 baseargs=`echo " ${ac_configure_args} " | \
        sed -e 's/ --no[^ ]* / /' \
-           -e 's/ \(--c[a-z-]*\|-cache-file\)[= ][^ ]* / /' \
-           -e 's/ \(--sr[a-z-]*\|-srcdir\)[= ][^ ]* / /' \
-           -e 's/ \(--ho[a-z-]*\|-host\)[= ][^ ]* / /' \
-           -e 's/ \(--bu[a-z-]*\|-build\)[= ][^ ]* / /' \
-           -e 's/ \(--t[a-z-]*\|-target\)[= ][^ ]* / /' \
+           -e 's/ --c[a-z-]*[= ][^ ]* / /' \
+           -e 's/ --sr[a-z-]*[= ][^ ]* / /' \
+           -e 's/ --ho[a-z-]*[= ][^ ]* / /' \
+           -e 's/ --bu[a-z-]*[= ][^ ]* / /' \
+           -e 's/ --t[a-z-]*[= ][^ ]* / /' \
+           -e 's/ -cache-file[= ][^ ]* / /' \
+           -e 's/ -srcdir[= ][^ ]* / /' \
+           -e 's/ -host[= ][^ ]* / /' \
+           -e 's/ -build[= ][^ ]* / /' \
+           -e 's/ -target[= ][^ ]* / /' \
            -e 's/ [^ -][^ ]* / /' \
            -e 's/^ *//;s/ *$//'`
 
index 39554a5c835bd8912422050aebf3d53fb172d730..47ea16f540e32a6aa58f8814e66c486dda929651 100644 (file)
@@ -1794,11 +1794,16 @@ AC_SUBST_FILE(serialization_dependencies)
 # down to subconfigures.
 baseargs=`echo " ${ac_configure_args} " | \
        sed -e 's/ --no[[^ ]]* / /' \
-           -e 's/ \(--c[[a-z-]]*\|-cache-file\)[[= ]][[^ ]]* / /' \
-           -e 's/ \(--sr[[a-z-]]*\|-srcdir\)[[= ]][[^ ]]* / /' \
-           -e 's/ \(--ho[[a-z-]]*\|-host\)[[= ]][[^ ]]* / /' \
-           -e 's/ \(--bu[[a-z-]]*\|-build\)[[= ]][[^ ]]* / /' \
-           -e 's/ \(--t[[a-z-]]*\|-target\)[[= ]][[^ ]]* / /' \
+           -e 's/ --c[[a-z-]]*[[= ]][[^ ]]* / /' \
+           -e 's/ --sr[[a-z-]]*[[= ]][[^ ]]* / /' \
+           -e 's/ --ho[[a-z-]]*[[= ]][[^ ]]* / /' \
+           -e 's/ --bu[[a-z-]]*[[= ]][[^ ]]* / /' \
+           -e 's/ --t[[a-z-]]*[[= ]][[^ ]]* / /' \
+           -e 's/ -cache-file[[= ]][[^ ]]* / /' \
+           -e 's/ -srcdir[[= ]][[^ ]]* / /' \
+           -e 's/ -host[[= ]][[^ ]]* / /' \
+           -e 's/ -build[[= ]][[^ ]]* / /' \
+           -e 's/ -target[[= ]][[^ ]]* / /' \
            -e 's/ [[^ -][^ ]*] / /' \
            -e 's/^ *//;s/ *$//'`