summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-01-17 08:00:16 +0000
committerJakub Jelinek <jakub@redhat.com>2003-01-17 08:00:16 +0000
commitae31d9aede90d292ff8e8ce4ef84ed41d1971305 (patch)
treef18cecff965af73f969f60100e2a11f126aa6ed0 /configure.in
parented9e6413fb744d8a93e0f083e18eab5b28eee20c (diff)
downloadgdb-ae31d9aede90d292ff8e8ce4ef84ed41d1971305.tar.gz
* 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 39554a5c835..47ea16f540e 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/ *$//'`