From: Jakub Jelinek Date: Fri, 17 Jan 2003 08:02:23 +0000 (+0100) Subject: configure.in (baseargs): Avoid using \| in sed regular expressions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a94a2d4cfb44f7e2ec04c3471c00d4d7f80433c6;p=gcc.git configure.in (baseargs): Avoid using \| in sed regular expressions. * configure.in (baseargs): Avoid using \| in sed regular expressions. * configure: Rebuilt. From-SVN: r61431 --- diff --git a/ChangeLog b/ChangeLog index f645b202819..056f0a3033f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-01-17 Jakub Jelinek + + * configure.in (baseargs): Avoid using \| in sed regular + expressions. + * configure: Rebuilt. + 2003-01-16 Jakub Jelinek * configure.in (baseargs): Remove all supported forms of diff --git a/configure b/configure index b44d1a849a1..035797812dc 100755 --- 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/ *$//'` diff --git a/configure.in b/configure.in index 39554a5c835..47ea16f540e 100644 --- a/configure.in +++ b/configure.in @@ -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/ *$//'`