From 11a4d912bd720a244dbd75a4987b3edcd6a6eb4b Mon Sep 17 00:00:00 2001 From: Linn Crosetto Date: Fri, 18 Sep 2015 14:49:34 -0400 Subject: [PATCH] Fix recursive reference for RELEASE Building 0.9 with GNU Make 4.0 fails with the following error: Makefile:4: *** Recursive variable 'RELEASE' references itself (eventually). Stop. Change RELEASE to simply-expanded. Signed-off-by: Linn Crosetto --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48e2a7d..2449fe4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 0.9 RELEASE := ifneq ($(RELEASE),"") - RELEASE="-$(RELEASE)" + RELEASE:="-$(RELEASE)" endif CC = $(CROSS_COMPILE)gcc