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 <linn@hpe.com>
This commit is contained in:
Linn Crosetto 2015-09-18 14:49:34 -04:00 committed by Peter Jones
parent a4af142590
commit 11a4d912bd

View File

@ -1,7 +1,7 @@
VERSION = 0.9 VERSION = 0.9
RELEASE := RELEASE :=
ifneq ($(RELEASE),"") ifneq ($(RELEASE),"")
RELEASE="-$(RELEASE)" RELEASE:="-$(RELEASE)"
endif endif
CC = $(CROSS_COMPILE)gcc CC = $(CROSS_COMPILE)gcc