On Sun, Sep 29, 2013 at 7:08 AM, Stefan Beller <stefanbeller@xxxxxxxxxxxxxx> wrote: > Signed-off-by: Stefan Beller <stefanbeller@xxxxxxxxxxxxxx> > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index de3d72c..60afa51 100644 > --- a/Makefile > +++ b/Makefile > @@ -349,7 +349,7 @@ GIT-VERSION-FILE: FORCE > > # CFLAGS and LDFLAGS are for the users to override from the command line. > > -CFLAGS = -g -O2 -Wall > +CFLAGS = -g -O2 -Wall -Wno-format-zero-length Oh yes please. However, somebody mentioned that this might break compilers other than gcc, but perhaps we can do what Linux does: cc-disable-warning = $(call try-run,\ $(CC) $(CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(strip $(1))) CFLAGS = -g -O2 -Wall $(call cc-disable-warning,format-zero-length,) -- Felipe Contreras -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html