]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix make variable 3247/head
authorHarmen Stoppels <harmenstoppels@gmail.com>
Fri, 19 Aug 2022 10:06:43 +0000 (12:06 +0200)
committerHarmen Stoppels <harmenstoppels@gmail.com>
Fri, 19 Aug 2022 10:06:43 +0000 (12:06 +0200)
Makefile
lib/libzstd.mk
programs/Makefile

index 67ef928cce5c8a674eb483557a15b2a3e2cf41a6..429c90ff1f4401189a7c82d2081e1294582cd414 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -157,7 +157,7 @@ MKDIR ?= mkdir -p
 
 HAVE_COLORNEVER = $(shell echo a | egrep --color=never a > /dev/null 2> /dev/null && echo 1 || echo 0)
 EGREP_OPTIONS ?=
-ifeq ($HAVE_COLORNEVER, 1)
+ifeq ($(HAVE_COLORNEVER), 1)
 EGREP_OPTIONS += --color=never
 endif
 EGREP = egrep $(EGREP_OPTIONS)
index df298d789783a1ad3a4217fd1bdd36c7774c188b..f9cfa6f2be14823d08b250037d0239aa4397d896 100644 (file)
@@ -120,7 +120,7 @@ endif
 
 HAVE_COLORNEVER = $(shell echo a | grep --color=never a > /dev/null 2> /dev/null && echo 1 || echo 0)
 GREP_OPTIONS ?=
-ifeq ($HAVE_COLORNEVER, 1)
+ifeq ($(HAVE_COLORNEVER), 1)
   GREP_OPTIONS += --color=never
 endif
 GREP = grep $(GREP_OPTIONS)
index a5f5b45f2ed988be6c89a9bb6a7edb81bda4c512..fb830ab19c71bdc1751974b35b141b37e538cac3 100644 (file)
@@ -339,7 +339,7 @@ ifneq (,$(filter $(UNAME),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD D
 
 HAVE_COLORNEVER = $(shell echo a | egrep --color=never a > /dev/null 2> /dev/null && echo 1 || echo 0)
 EGREP_OPTIONS ?=
-ifeq ($HAVE_COLORNEVER, 1)
+ifeq ($(HAVE_COLORNEVER), 1)
   EGREP_OPTIONS += --color=never
 endif
 EGREP = egrep $(EGREP_OPTIONS)