Skip to content

Commit

Permalink
Fix recursive reference for RELEASE
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Linn Crosetto authored and vathpela committed Sep 18, 2015
1 parent 16f8f00 commit e22a7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,7 +1,7 @@
VERSION = 0.9
RELEASE :=
ifneq ($(RELEASE),"")
RELEASE="-$(RELEASE)"
RELEASE:="-$(RELEASE)"
endif

CC = $(CROSS_COMPILE)gcc
Expand Down

0 comments on commit e22a7b5

Please sign in to comment.