diff options
author | Jakub Jelinek <jakub@redhat.com> | 2003-01-17 08:00:16 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2003-01-17 08:00:16 +0000 |
commit | 5e367fa5559ac7fb86c0edc046d2b3df538a72a1 (patch) | |
tree | e368ad61aaa18fe49b066c064919f02c0845ae7c /configure.in | |
parent | c6f8bb1e767416ada749ae919c9af5120e75a6d0 (diff) | |
download | gdb-5e367fa5559ac7fb86c0edc046d2b3df538a72a1.zip gdb-5e367fa5559ac7fb86c0edc046d2b3df538a72a1.tar.gz gdb-5e367fa5559ac7fb86c0edc046d2b3df538a72a1.tar.bz2 |
* configure.in (baseargs): Avoid using \| in sed regular
expressions.
* configure: Rebuilt.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 39554a5..47ea16f 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/ *$//'` |