From e22a7b5b772dba6588dd955dc017e572f7e29784 Mon Sep 17 00:00:00 2001 From: Linn Crosetto Date: Thu, 17 Sep 2015 14:36:52 -0600 Subject: 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 48e2a7d4..2449fe40 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 0.9 RELEASE := ifneq ($(RELEASE),"") - RELEASE="-$(RELEASE)" + RELEASE:="-$(RELEASE)" endif CC = $(CROSS_COMPILE)gcc -- cgit v1.2.3