From: Michael Eager Date: Tue, 13 May 2003 06:31:02 +0000 (+0000) Subject: configure.in: Correct sed script so that options in quotes are not deleted. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=243aa302a64aa73b894a6869765d2026baa916de;p=gcc.git configure.in: Correct sed script so that options in quotes are not deleted. 2003-05-12 Michael Eager * configure.in: Correct sed script so that options in quotes are not deleted. * configure: Rebuild. From-SVN: r66750 --- diff --git a/ChangeLog b/ChangeLog index dfc4a111e26..1165ef0c24a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-05-12 Michael Eager + + * configure.in: Correct sed script so that options in quotes are not + deleted. + * configure: Rebuild. + 2003-05-12 Michael Meissner * MAINTAINERS: Update my email addresses. 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, diff --git a/configure.in b/configure.in index f695982d796..97ab507fb54 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,