From: Harmen Stoppels Date: Fri, 19 Aug 2022 10:06:43 +0000 (+0200) Subject: Fix make variable X-Git-Tag: v1.5.4^2~156^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3247%2Fhead;p=thirdparty%2Fzstd.git Fix make variable --- diff --git a/Makefile b/Makefile index 67ef928cc..429c90ff1 100644 --- 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) diff --git a/lib/libzstd.mk b/lib/libzstd.mk index df298d789..f9cfa6f2b 100644 --- a/lib/libzstd.mk +++ b/lib/libzstd.mk @@ -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) diff --git a/programs/Makefile b/programs/Makefile index a5f5b45f2..fb830ab19 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -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)