diff options
author | portix <portix@gmx.net> | 2013-04-08 12:41:52 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2013-04-08 12:41:52 +0200 |
commit | 02cf2fb2a6e985a2778f24b8f36c3c1accc8f687 (patch) | |
tree | bc7b98ed3257c54073697f0f2310278c38d7a517 | |
parent | 2e7b76a6c0c21478dd9b46ff1167d9148f971be7 (diff) | |
download | dwb-02cf2fb2a6e985a2778f24b8f36c3c1accc8f687.zip |
Adding missing quotation marks in config.mk
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |