summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-05-13 06:34:57 +0000
committerAndreas Jaeger <aj@suse.de>2003-05-13 06:34:57 +0000
commit863de3d8f21c2bff36d9244e504cdb87b79cbd5d (patch)
tree6833b504122faef14df318c6b81d25e0db472f25
parent7313a83e0eb0a65845006ce0dc09b66f08ba48ef (diff)
downloadgdb-863de3d8f21c2bff36d9244e504cdb87b79cbd5d.tar.gz
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--ChangeLog6
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 46067f48888..e712623ea53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure b/configure
index 8b6e6b94de6..871b774e3db 100755
--- a/configure
+++ b/configure
@@ -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 ff7b6cbc8d4..66bebe17cc9 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,