Re: Fix bootstrap/51072 -- libitm not disabled without c++

2012-01-05 Thread Richard Guenther
On Thu, Jan 5, 2012 at 3:25 AM, Richard Henderson wrote: > On 01/05/2012 12:53 PM, Jakub Jelinek wrote: >> On Thu, Jan 05, 2012 at 12:38:17PM +1100, Richard Henderson wrote: >>> +# Disable libitm if we're not building C++ >>> +case ,${enable_languages}, in >>> +  *,c++) ;; >> >> Shouldn't that be

Re: Fix bootstrap/51072 -- libitm not disabled without c++

2012-01-04 Thread Richard Henderson
On 01/05/2012 12:53 PM, Jakub Jelinek wrote: > On Thu, Jan 05, 2012 at 12:38:17PM +1100, Richard Henderson wrote: >> +# Disable libitm if we're not building C++ >> +case ,${enable_languages}, in >> + *,c++) ;; > > Shouldn't that be *,c++,* ? C++ might not be the last in the list... Gah, of cour

Re: Fix bootstrap/51072 -- libitm not disabled without c++

2012-01-04 Thread Jakub Jelinek
On Thu, Jan 05, 2012 at 12:38:17PM +1100, Richard Henderson wrote: > +# Disable libitm if we're not building C++ > +case ,${enable_languages}, in > + *,c++) ;; Shouldn't that be *,c++,* ? C++ might not be the last in the list... Jakub