summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsayjones.plus.com>2019-03-06 00:11:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-03-06 04:55:07 (GMT)
commitf23aa18e7fef59f9187a733e752dc425aa5346bf (patch)
tree01e963c7ada5d8667f54adb1ea9d6a8196509271 /Makefile
parent0d0ac3826a3bbb9247e39e12623bbcfdd722f24c (diff)
downloadgit-f23aa18e7fef59f9187a733e752dc425aa5346bf.zip
git-f23aa18e7fef59f9187a733e752dc425aa5346bf.tar.gz
git-f23aa18e7fef59f9187a733e752dc425aa5346bf.tar.bz2
Makefile: fix 'hdr-check' when GCRYPT not installed
If the GCRYPT_SHA256 build variable is not set, then the 'hdr-check' target complains about the missing <gcrypt.h> header file. Add the 'sha256/gcrypt.h' header file to the exception list, if the build variable is not defined. While here, replace the 'xdiff%' filter pattern with 'xdiff/%' (and similarly for the compat pattern) since the original pattern inadvertently excluded the 'xdiff-interface.h' header. Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1a44c81..6e7079a 100644
--- a/Makefile
+++ b/Makefile
@@ -2694,7 +2694,10 @@ $(SP_OBJ): %.sp: %.c GIT-CFLAGS FORCE
sparse: $(SP_OBJ)
GEN_HDRS := command-list.h unicode-width.h
-EXCEPT_HDRS := $(GEN_HDRS) compat% xdiff%
+EXCEPT_HDRS := $(GEN_HDRS) compat/% xdiff/%
+ifndef GCRYPT_SHA256
+ EXCEPT_HDRS += sha256/gcrypt.h
+endif
CHK_HDRS = $(filter-out $(EXCEPT_HDRS),$(patsubst ./%,%,$(LIB_H)))
HCO = $(patsubst %.h,%.hco,$(CHK_HDRS))