From: Bartek Grzybowski Date: Thu, 24 Sep 2020 13:55:12 +0000 (+0200) Subject: Don't use GNU make new shell assignment operator X-Git-Tag: 7.0.0~209^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=9a19d0574f27e2bc1d0cf772617a9242195993ed;p=oom.git Don't use GNU make new shell assignment operator Shell assignment operator "!=" is a new feature in GNU make 4.0 and breaks the chart build on previous versions of make which is still present in many still supported Linux distros. Change-Id: I74c3c5e910ff7b1344c3da95fa76d11ec31b37c6 Issue-ID: OOM-2562 Signed-off-by: Bartek Grzybowski --- diff --git a/kubernetes/common/Makefile b/kubernetes/common/Makefile index eb782b4fd8..0e923b7a75 100644 --- a/kubernetes/common/Makefile +++ b/kubernetes/common/Makefile @@ -22,7 +22,7 @@ COMMON_CHARTS_DIR := common EXCLUDES := HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) -HELM_VER != helm version --template "{{.Version}}" +HELM_VER := $(shell helm version --template "{{.Version}}") .PHONY: $(EXCLUDES) $(HELM_CHARTS)