summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-02-25 14:19:35 -0800
committerJunio C Hamano <gitster@pobox.com>2025-02-25 14:19:35 -0800
commit5ce6e0e2421af8aaa2be5684176a66388561d44e (patch)
tree365d235cb837bc8974cc3d6ede87fcfa223be69a
parentf52abcda959c2fa83243be21041d289735379b7c (diff)
parentf23179924bf4ee0e888cfbe911d9bd472918bcb4 (diff)
downloadgit-5ce6e0e2421af8aaa2be5684176a66388561d44e.tar.xz
Merge branch 'tb/new-make-fix'
Workaround the overly picky HT/SP rule in newer GNU Make. * tb/new-make-fix: Makefile: remove accidental recipe prefix in conditional
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index bcf5ed3f85..6d45093089 100644
--- a/Makefile
+++ b/Makefile
@@ -1704,16 +1704,16 @@ IMAP_SEND_LDFLAGS += $(OPENSSL_LINK) $(OPENSSL_LIBSSL) $(LIB_4_CRYPTO)
ifdef ZLIB_NG
BASIC_CFLAGS += -DHAVE_ZLIB_NG
- ifdef ZLIB_NG_PATH
+ ifdef ZLIB_NG_PATH
BASIC_CFLAGS += -I$(ZLIB_NG_PATH)/include
EXTLIBS += $(call libpath_template,$(ZLIB_NG_PATH)/$(lib))
- endif
+ endif
EXTLIBS += -lz-ng
else
- ifdef ZLIB_PATH
+ ifdef ZLIB_PATH
BASIC_CFLAGS += -I$(ZLIB_PATH)/include
EXTLIBS += $(call libpath_template,$(ZLIB_PATH)/$(lib))
- endif
+ endif
EXTLIBS += -lz
endif