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-17 11:00:16 +0300
committerJakub Jelinek <jakub@redhat.com>2003-01-17 11:00:16 +0300
commitc4f94f48e3b6b5ada0b11195d2909c7c9b57de74 (patch)
tree4b6325f6d36ddb51b25402c41b0411f4f1a293da /configure.in
parentabbaa3a0e6e9b5e369381a560d3dd6fb47416f7d (diff)
* configure.in (baseargs): Avoid using \| in sed regular
expressions. * configure: Rebuilt.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in15
1 files changed, 10 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 39554a5c8..47ea16f54 100644
--- a/configure.in
+++ b/configure.in
@@ -1794,11 +1794,16 @@ AC_SUBST_FILE(serialization_dependencies)
# down to subconfigures.
baseargs=`echo " ${ac_configure_args} " | \
sed -e 's/ --no[[^ ]]* / /' \
- -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/ --c[[a-z-]]*[[= ]][[^ ]]* / /' \
+ -e 's/ --sr[[a-z-]]*[[= ]][[^ ]]* / /' \
+ -e 's/ --ho[[a-z-]]*[[= ]][[^ ]]* / /' \
+ -e 's/ --bu[[a-z-]]*[[= ]][[^ ]]* / /' \
+ -e 's/ --t[[a-z-]]*[[= ]][[^ ]]* / /' \
+ -e 's/ -cache-file[[= ]][[^ ]]* / /' \
+ -e 's/ -srcdir[[= ]][[^ ]]* / /' \
+ -e 's/ -host[[= ]][[^ ]]* / /' \
+ -e 's/ -build[[= ]][[^ ]]* / /' \
+ -e 's/ -target[[= ]][[^ ]]* / /' \
-e 's/ [[^ -][^ ]*] / /' \
-e 's/^ *//;s/ *$//'`