diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-17 08:02:23 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-17 08:02:23 +0000 |
commit | c9b546418d5576655877d43fa34f7fb92f716b5e (patch) | |
tree | d4658900e6f71a8d1862e148fdb1fe4ef00755c6 /configure | |
parent | 94491c0be315ae40401c5d85d09f5e75c3b5bd13 (diff) | |
download | gcc-c9b546418d5576655877d43fa34f7fb92f716b5e.tar.gz |
* configure.in (baseargs): Avoid using \| in sed regular
expressions.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 15 |
1 files changed, 10 insertions, 5 deletions
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/ *$//'` |