On Wednesday 18 January 2012 13:06:42 Bernhard Reutner-Fischer wrote: > On 18 January 2012 13:19, Mike Frysinger <[email protected]> wrote: > > On Wednesday 18 January 2012 02:44:39 Bernhard Reutner-Fischer wrote: > >> --- /dev/null > >> +++ b/extra/scripts/cppcheck.sh > >> @@ -0,0 +1,23 @@ > >> +#! /bin/sh > >> + > >> +${REAL_CC-gcc} $* > > > > $* -> "$@" > > > > the rest of our build system uses ${CC} rather than ${REAL_CC} ... > > make REAL_CC=gcc-HEAD CC=/src/uClibc/extra/scripts/cppcheck.sh
gotcha. when you fix things up, i'd suggest the first line being:
: ${REAL_CC:-gcc}
then assuming everywhere else that ${REAL_CC} is set
-mike
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
