From 02cf2fb2a6e985a2778f24b8f36c3c1accc8f687 Mon Sep 17 00:00:00 2001 From: portix Date: Mon, 8 Apr 2013 12:41:52 +0200 Subject: Adding missing quotation marks in config.mk --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 127203fc..b234d947 100644 --- a/config.mk +++ b/config.mk @@ -30,7 +30,7 @@ REAL_VERSION=$(BUILDDATE) # Version info GIT_VERSION=$(shell git log -1 --format="%cd %h" --date=short) VERSION=$(shell if [ "$(GIT_VERSION)" ]; then echo "commit\ \"$(GIT_VERSION)\""; else echo "$(REAL_VERSION)"; fi) -NAME=$(shell if [ $(GIT_VERSION) ]; then echo "$(REAL_NAME)-git"; else echo "$(REAL_NAME)"; fi) +NAME=$(shell if [ "$(GIT_VERSION)" ]; then echo "$(REAL_NAME)-git"; else echo "$(REAL_NAME)"; fi) BUILDDATE=`date +%Y.%m.%d` # Targets -- cgit v1.2.3