diff options
author | Jakub Jelinek <jakub@redhat.com> | 2003-01-16 16:27:51 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2003-01-16 16:27:51 +0000 |
commit | 7afd17883fd6420ce8150ddd7b47821846c9639e (patch) | |
tree | da3088d8194fa706b1101002cccc54d3c1f581ee /configure | |
parent | ce59a0b040e251c9ee8dec4de57d77f655eeed4f (diff) | |
download | binutils-redhat-7afd17883fd6420ce8150ddd7b47821846c9639e.tar.gz |
* configure.in (baseargs): Remove all supported forms of
--cache-file, --srcdir, --host, --build and --target options
from argument lists.
* configure: Rebuilt.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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/ *$//'` |