diff options
| author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-16 16:31:49 +0000 |
|---|---|---|
| committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-16 16:31:49 +0000 |
| commit | da7bb396ca020f8601e37f052f28e01facc99521 (patch) | |
| tree | 1777698135c7316f45cff5abef199798eee6be82 | |
| parent | aec26802ba3ae18e25af626fcc3e6e92a1d7d76a (diff) | |
| download | ppe42-gcc-da7bb396ca020f8601e37f052f28e01facc99521.tar.gz ppe42-gcc-da7bb396ca020f8601e37f052f28e01facc99521.zip | |
* configure.in (baseargs): Remove all supported forms of
--cache-file, --srcdir, --host, --build and --target options
from argument lists.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61397 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rwxr-xr-x | configure | 10 | ||||
| -rw-r--r-- | configure.in | 10 |
3 files changed, 17 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog index ce5e9b2e669..f645b202819 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-01-16 Jakub Jelinek <jakub@redhat.com> + + * configure.in (baseargs): Remove all supported forms of + --cache-file, --srcdir, --host, --build and --target options + from argument lists. + * configure: Rebuilt. + 2003-01-15 Josef Zlomek <zlomekj@suse.cz> * MAINTAINERS: Add myself to write-after-approval list. diff --git a/configure b/configure index 92473d7682c..b44d1a849a1 100755 --- a/configure +++ b/configure @@ -2452,11 +2452,11 @@ serialization_dependencies=serdep.tmp # down to subconfigures. baseargs=`echo " ${ac_configure_args} " | \ sed -e 's/ --no[^ ]* / /' \ - -e 's/ --cache[a-z-]*=[^ ]* / /' \ - -e 's/ --sr[a-z-]*=[^ ]* / /' \ - -e 's/ --ho[a-z-]*=[^ ]* / /' \ - -e 's/ --bu[a-z-]*=[^ ]* / /' \ - -e 's/ --ta[a-z-]*=[^ ]* / /' \ + -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/ [^ -][^ ]* / /' \ -e 's/^ *//;s/ *$//'` diff --git a/configure.in b/configure.in index 27c27328b3b..39554a5c835 100644 --- a/configure.in +++ b/configure.in @@ -1794,11 +1794,11 @@ AC_SUBST_FILE(serialization_dependencies) # down to subconfigures. baseargs=`echo " ${ac_configure_args} " | \ sed -e 's/ --no[[^ ]]* / /' \ - -e 's/ --cache[[a-z-]]*=[[^ ]]* / /' \ - -e 's/ --sr[[a-z-]]*=[[^ ]]* / /' \ - -e 's/ --ho[[a-z-]]*=[[^ ]]* / /' \ - -e 's/ --bu[[a-z-]]*=[[^ ]]* / /' \ - -e 's/ --ta[[a-z-]]*=[[^ ]]* / /' \ + -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/ [[^ -][^ ]*] / /' \ -e 's/^ *//;s/ *$//'` |

