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 | 914fb38a53aa1549939e7555092a97b34978db50 (patch) | |
tree | ae666058d1ea5b3454c8780035d0a61915ec4229 /configure.in | |
parent | e9cb5d00a878815a3632f41a11b4e916eb361221 (diff) | |
download | gdb-914fb38a53aa1549939e7555092a97b34978db50.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.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
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/ *$//'` |