From 92febe6b7ac8c46c3a9281a0ad691ced9ac6a361 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 16 Jan 2003 16:27:51 +0000 Subject: [PATCH] * configure.in (baseargs): Remove all supported forms of --cache-file, --srcdir, --host, --build and --target options from argument lists. * configure: Rebuilt. --- ChangeLog | 7 +++++++ configure | 10 +++++----- configure.in | 10 +++++----- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index fb1c7a902..ac29f9178 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-01-16 Jakub Jelinek + + * configure.in (baseargs): Remove all supported forms of + --cache-file, --srcdir, --host, --build and --target options + from argument lists. + * configure: Rebuilt. + 2003-01-15 Alexandre Oliva * configure.in (noconfigdirs): Don't skip gas on IRIX 6. diff --git a/configure b/configure index 92473d768..b44d1a849 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 27c27328b..39554a5c8 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/ *$//'`