From: Junio C Hamano Date: Fri, 25 Sep 2015 21:03:07 +0000 (-0700) Subject: Meta/Make: drop -std=c99 that was added by mistake X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=364297f9b46d2b1dfd6101e2f01e6073a5150a5d;p=thirdparty%2Fgit.git Meta/Make: drop -std=c99 that was added by mistake --- diff --git a/Make b/Make index 1ba20fe4c6..e0cfcbe14e 100755 --- a/Make +++ b/Make @@ -106,7 +106,7 @@ fi case "$NO_PEDANTIC" in ?*) ;; '') - PEDANT="-Werror -Wold-style-definition -std=c99 $PEDANT" + PEDANT="-Werror -Wold-style-definition $PEDANT" PEDANT="-Wpointer-arith -Woverflow -Wunused $PEDANT" PEDANT="-Wold-style-declaration -Wstrict-prototypes $PEDANT" ;;