From 80986e0dda68e0f71c5c488431e0b3514545f9f9 Mon Sep 17 00:00:00 2001 From: Alan Braithwaite Date: Tue, 19 May 2015 22:50:04 -0700 Subject: [PATCH] Makefile: allow building from source without git This allows for building from a source tarball/zip using VERSION=$VERSION make build --- Makefile.INCLUDE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.INCLUDE b/Makefile.INCLUDE index d2d710fa20..1a1912853f 100644 --- a/Makefile.INCLUDE +++ b/Makefile.INCLUDE @@ -15,7 +15,7 @@ .SUFFIXES: -VERSION=$(shell cat `git rev-parse --show-toplevel`/VERSION) +VERSION?=$(shell cat `git rev-parse --show-toplevel`/VERSION) OS=$(shell uname) ARCH=$(shell uname -m)