This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix breakage


On Thu, Jun 14, 2007 at 01:53:18PM +0200, Paolo Bonzini wrote:
> Sorry, I committed the wrong version of the patch.
> 
> 2007-06-14  Paolo Bonzini  <bonzini@gnu.org>
> 
> 	* configure.ac: Fix earlier checkin.
> 	* configure: Regenerate.
> 
> Index: configure.ac
> ===================================================================
> --- configure.ac        (revision 125700)
> +++ configure.ac        (working copy)
> @@ -358,7 +358,7 @@ else
>    ac_checking_flags=release
>  fi])
>  IFS="${IFS=    }"; ac_save_IFS="$IFS"; IFS="$IFS,"
> -for check in release,$ac_checking_flags
> +for check in release $ac_checking_flags
>  do
>         case $check in
>         # these set all the flags to specific states

I don't think it is right.  Your patch:

http://gcc.gnu.org/ml/gcc-patches/2007-06/msg00940.html

doesn't say that we will enable release check unconditinally. I will
check in my patch to restore the old behavior.


H.J.
----
2007-06-14  H.J. Lu  <hongjiu.lu@intel.com>

	* configure.ac: Fix a typo in --enable-checking=.
	* configure: Regenerated.

--- gcc/configure.ac.check	2007-06-14 05:12:44.000000000 -0700
+++ gcc/configure.ac	2007-06-14 05:25:39.000000000 -0700
@@ -358,7 +358,7 @@ else
   ac_checking_flags=release
 fi])
 IFS="${IFS= 	}"; ac_save_IFS="$IFS"; IFS="$IFS,"
-for check in release,$ac_checking_flags
+for check in $ac_checking_flags
 do
 	case $check in
 	# these set all the flags to specific states


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]