Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-01-16 19:27:51 +0300
committerJakub Jelinek <jakub@redhat.com>2003-01-16 19:27:51 +0300
commit92febe6b7ac8c46c3a9281a0ad691ced9ac6a361 (patch)
tree7e600197e3436a14d5d82a261b7ae8ec558fbaa5 /configure
parent41429bc99b584a94e167f1421533285e1171c13a (diff)
* 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-xconfigure10
1 files changed, 5 insertions, 5 deletions
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/ *$//'`