From 78b2170e036eab186d36a7528b534a75f20b9464 Mon Sep 17 00:00:00 2001 From: luukvbaal <31730729+luukvbaal@users.noreply.github.com> Date: Wed, 26 May 2021 20:17:38 +0200 Subject: [PATCH] Ignore NOLC when ICONS/NERD are set (#1027) --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7188c2fe..994fc09a 100644 --- a/Makefile +++ b/Makefile @@ -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)