diff options
author | Andreas Jaeger <aj@suse.de> | 2003-05-13 06:34:57 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-05-13 06:34:57 +0000 |
commit | 3959a22a502d16d780418a4c32083d383a6ef553 (patch) | |
tree | 7dff7f712914ad17ba70d613ccc55bde8d66e780 | |
parent | 6760f9e688cad893d3e5597bd846489e00da51e2 (diff) | |
download | gdb-3959a22a502d16d780418a4c32083d383a6ef553.zip gdb-3959a22a502d16d780418a4c32083d383a6ef553.tar.gz gdb-3959a22a502d16d780418a4c32083d383a6ef553.tar.bz2 |
2003-05-13 Michael Eager <eager@mvista.com>
* configure.in: Correct sed script so that options in quotes are not
deleted.
* configure: Rebuild.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2003-05-13 Michael Eager <eager@mvista.com> + + * configure.in: Correct sed script so that options in quotes are not + deleted. + * configure: Rebuild. + 2003-05-12 Corinna Vinschen <corinna@vinschen.de> * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin @@ -2418,7 +2418,7 @@ baseargs=`echo " ${ac_configure_args} " | \ -e 's/ -host[= ][^ ]* / /' \ -e 's/ -build[= ][^ ]* / /' \ -e 's/ -target[= ][^ ]* / /' \ - -e 's/ [^ -][^ ]* / /' \ + -e "s/ [[^' -][^ ]*] / /" \ -e 's/^ *//;s/ *$//'` # For the build-side libraries, we just need to pretend we're native, diff --git a/configure.in b/configure.in index ff7b6cb..66bebe1 100644 --- a/configure.in +++ b/configure.in @@ -1757,7 +1757,7 @@ baseargs=`echo " ${ac_configure_args} " | \ -e 's/ -host[[= ]][[^ ]]* / /' \ -e 's/ -build[[= ]][[^ ]]* / /' \ -e 's/ -target[[= ]][[^ ]]* / /' \ - -e 's/ [[^ -][^ ]*] / /' \ + -e "s/ [[^' -][^ ]*] / /" \ -e 's/^ *//;s/ *$//'` # For the build-side libraries, we just need to pretend we're native, |