mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Ignore NOLC when ICONS/NERD are set (#1027)
This commit is contained in:
parent
284a3c4866
commit
78b2170e03
6
Makefile
6
Makefile
|
@ -58,8 +58,14 @@ ifeq ($(strip $(O_PCRE)),1)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(O_NOLC)),1)
|
ifeq ($(strip $(O_NOLC)),1)
|
||||||
|
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
|
CPPFLAGS += -DNOLC
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(O_NOMOUSE)),1)
|
ifeq ($(strip $(O_NOMOUSE)),1)
|
||||||
CPPFLAGS += -DNOMOUSE
|
CPPFLAGS += -DNOMOUSE
|
||||||
|
|
Loading…
Reference in a new issue