From 343d2015e0d0729936019d22fc7399a320506ecd Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 13 Dec 2024 08:55:42 -0800 Subject: [PATCH] Meta/Make: simplify CFLAGS --- Make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make b/Make index 7d6907b145..dc7c44c55b 100755 --- a/Make +++ b/Make @@ -272,7 +272,7 @@ ${make-make} \ ${DEVELOPER:+"DEVELOPER=YesPlease"} \ SPATCH_FLAGS="--all-includes --recursive-includes --patch ." \ SPATCH_BATCH_SIZE=16 \ - CFLAGS="-g -Wall -Wunused -Wdeclaration-after-statement -std=gnu99${O:+ $O}" \ + CFLAGS="-g -Wdeclaration-after-statement ${O:+ $O}" \ ${tests:+"T=$tests"} ${tests:+UNIT_TESTS=} \ "$@" status=$? -- 2.47.3