diff options
author | Michael Eager <eager@mvista.com> | 2003-05-13 06:31:02 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-05-13 08:31:02 +0200 |
commit | 243aa302a64aa73b894a6869765d2026baa916de (patch) | |
tree | 24ff4354a7b6789207263c7f850981099c7f7cf1 | |
parent | 3b6b673dabbab53b8e57cc7ad533f336841356f5 (diff) | |
download | gcc-243aa302a64aa73b894a6869765d2026baa916de.zip gcc-243aa302a64aa73b894a6869765d2026baa916de.tar.gz gcc-243aa302a64aa73b894a6869765d2026baa916de.tar.bz2 |
configure.in: Correct sed script so that options in quotes are not deleted.
2003-05-12 Michael Eager <eager@mvista.com>
* configure.in: Correct sed script so that options in quotes are not
deleted.
* configure: Rebuild.
From-SVN: r66750
-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-12 Michael Eager <eager@mvista.com> + + * configure.in: Correct sed script so that options in quotes are not + deleted. + * configure: Rebuild. + 2003-05-12 Michael Meissner <gnu@the-meissners.org> * MAINTAINERS: Update my email addresses. @@ -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 f695982..97ab507 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, |