From: Ævar Arnfjörð Bjarmason Date: Thu, 21 Oct 2021 20:00:14 +0000 (+0200) Subject: Makefile: remove redundant GIT-CFLAGS dependency from "sparse" X-Git-Tag: v2.34.0-rc0~20^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a7a90bc3de91db34a45cfd1f28e6f79ba91fd87;p=thirdparty%2Fgit.git Makefile: remove redundant GIT-CFLAGS dependency from "sparse" The "sparse" target needed the GIT-CFLAGS dependency before my c234e8a0ecf (Makefile: make the "sparse" target non-.PHONY, 2021-09-23), but since then it depends on the corresponding *.o files, which in turn depend on the correct header files, as well as on GIT-CFLAGS. There's no need to re-state this dependency here. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 8d085ab72a..38568792f7 100644 --- a/Makefile +++ b/Makefile @@ -2903,7 +2903,7 @@ check-sha1:: t/helper/test-tool$X SP_OBJ = $(patsubst %.o,%.sp,$(C_OBJ)) -$(SP_OBJ): %.sp: %.c %.o GIT-CFLAGS +$(SP_OBJ): %.sp: %.c %.o $(QUIET_SP)cgcc -no-compile $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) \ -Wsparse-error \ $(SPARSE_FLAGS) $(SP_EXTRA_FLAGS) $< && \