summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-10-29 15:43:12 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-10-29 15:43:12 -0700
commit23112fc28c4339f583b3708152c75e3e4d754335 (patch)
tree1e79395948b8ae5877d364a81c1146e4486da878
parentMerge branch 'bs/doc-blame-color-lines' (diff)
parentMakefile: remove redundant GIT-CFLAGS dependency from "sparse" (diff)
downloadtgif-23112fc28c4339f583b3708152c75e3e4d754335.tar.xz
Merge branch 'ab/make-sparse-for-real'
Fix-up for a recent topic. * ab/make-sparse-for-real: Makefile: remove redundant GIT-CFLAGS dependency from "sparse"
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 381bed2c1d..12be39ac49 100644
--- a/Makefile
+++ b/Makefile
@@ -2901,7 +2901,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) $< && \