Re: [PATCH] tests: do not clobber the modified CC

2012-03-06 Thread Stefano Lattarini
On 03/06/2012 02:23 PM, Peter Rosin wrote: > Stefano Lattarini skrev 2012-03-06 14:11: >> On 03/06/2012 01:53 PM, Peter Rosin wrote: >> >>>> Subject: [PATCH] tests: do not clobber the modified CC >>>> >> Maybe s|the modified CC|the $CC set by A

Re: [PATCH] tests: do not clobber the modified CC

2012-03-06 Thread Peter Rosin
Stefano Lattarini skrev 2012-03-06 14:11: > On 03/06/2012 01:53 PM, Peter Rosin wrote: > >> > Subject: [PATCH] tests: do not clobber the modified CC >> > > Maybe s|the modified CC|the $CC set by AM_PROG_CC_C_O (for losing compilers)| > here? > Pushed with nit

Re: [PATCH] tests: do not clobber the modified CC

2012-03-06 Thread Stefano Lattarini
On 03/06/2012 01:53 PM, Peter Rosin wrote: > Subject: [PATCH] tests: do not clobber the modified CC > Maybe s|the modified CC|the $CC set by AM_PROG_CC_C_O (for losing compilers)| here? > If CC is originally a losing compiler, AM_PROG_CC_C_O will > modify CC. "$MAKE -e"

[PATCH] tests: do not clobber the modified CC

2012-03-06 Thread Peter Rosin
If CC is originally a losing compiler, AM_PROG_CC_C_O will modify CC. "$MAKE -e" will then clobber this modified CC and reintroduce the raw losing compiler causing the test to fail, as subdir-objects is in effect. * tests/yacc-dist-nobuild-subdir.test: Drop -e from the $MAKE invocations. This is