Ignore NOLC when ICONS/NERD are set (#1027)

This commit is contained in:
luukvbaal 2021-05-26 20:17:38 +02:00 committed by GitHub
parent 284a3c4866
commit 78b2170e03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -58,7 +58,13 @@ ifeq ($(strip $(O_PCRE)),1)
endif
ifeq ($(strip $(O_NOLC)),1)
CPPFLAGS += -DNOLC
ifeq ($(strip $(O_ICONS)),1)
$(info *** Ignoring O_NOLC since O_ICONS is set ***)
else ifeq ($(strip $(O_NERD)),1)
$(info *** Ignoring O_NOLC since O_NERD is set ***)
else
CPPFLAGS += -DNOLC
endif
endif
ifeq ($(strip $(O_NOMOUSE)),1)