diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-13 06:31:02 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-13 06:31:02 +0000 |
commit | 6995305c60a555012992948de60571ba0e396cdd (patch) | |
tree | 24ff4354a7b6789207263c7f850981099c7f7cf1 /configure | |
parent | 6c6138d48eaedb67fabd9d1be7dc9b3d4b2ad13a (diff) | |
download | gcc-6995305c60a555012992948de60571ba0e396cdd.tar.gz |
2003-05-12 Michael Eager <eager@mvista.com>
* configure.in: Correct sed script so that options in quotes are not
deleted.
* configure: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66750 138bc75d-0d04-0410-961f-82ee72b054a4
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, |