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-Tag: releases/gcc-3.4.0~6618 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=243aa302a64aa73b894a6869765d2026baa916de;p=thirdparty%2Fgcc.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 dfc4a111e26d..1165ef0c24a0 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 045ad147f730..1151d5554b6e 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 f695982d796a..97ab507fb54b 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,