mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
Makefile.mk: improve a GNU Make hack [ci skip]
Replace the hack of using `$() ` to represent a single space. The new method silences the `--warn-undefined-variables` debug warning and it's also a better-known form of solving this problem. Reviewed-by: Jay Satiro Closes #10031
This commit is contained in:
parent
6b30f28875
commit
2b584fffce
@ -324,7 +324,7 @@ ifdef WIN32
|
||||
_LIBS += -lws2_32 -lcrypt32 -lbcrypt
|
||||
endif
|
||||
|
||||
ifneq ($(findstring 11,$(subst $() ,,$(SSLLIBS))),)
|
||||
ifneq ($(findstring 11,$(subst $(subst ,, ),,$(SSLLIBS))),)
|
||||
CPPFLAGS += -DCURL_WITH_MULTI_SSL
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user