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 /configure | |
parent | 3b6b673dabbab53b8e57cc7ad533f336841356f5 (diff) | |
download | gcc-243aa302a64aa73b894a6869765d2026baa916de.tar.gz |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 045ad147f73..1151d5554b6 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, |