aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-01-16 17:31:49 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2003-01-16 17:31:49 +0100
commit73f849244abc4d6b4f601cb8bbea1e794ec74264 (patch)
tree1777698135c7316f45cff5abef199798eee6be82 /configure.in
parent0334ef47d9eeda6c9eb5a44b077184c3a07d2a7c (diff)
downloadgcc-73f849244abc4d6b4f601cb8bbea1e794ec74264.zip
gcc-73f849244abc4d6b4f601cb8bbea1e794ec74264.tar.gz
gcc-73f849244abc4d6b4f601cb8bbea1e794ec74264.tar.bz2
configure.in (baseargs): Remove all supported forms of --cache-file...
* configure.in (baseargs): Remove all supported forms of --cache-file, --srcdir, --host, --build and --target options from argument lists. * configure: Rebuilt. From-SVN: r61397
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 27c2732..39554a5 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/ *$//'`