]> git.sur5r.net Git - i3/i3status/commitdiff
Bugfix: re-add single quotes around I3STATUS_VERSION
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 5 Sep 2016 06:35:24 +0000 (08:35 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 5 Sep 2016 06:35:24 +0000 (08:35 +0200)
related to https://github.com/i3/i3/issues/2437

Makefile

index 440328a60ec11b6b840e014dd21b1743080ffbbc..2035b0d252cfc99b2757f026d361d9ee5caf9033 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ LIBS+=-lpthread
 ifeq ($(wildcard .git),)
   # not in git repository
   VERSION := $(shell [ -f $(TOPDIR)/I3STATUS_VERSION ] && cat $(TOPDIR)/I3STATUS_VERSION | cut -d '-' -f 1)
-  I3STATUS_VERSION := $(shell [ -f $(TOPDIR)/I3STATUS_VERSION ] && cat $(TOPDIR)/I3STATUS_VERSION)
+  I3STATUS_VERSION := '$(shell [ -f $(TOPDIR)/I3STATUS_VERSION ] && cat $(TOPDIR)/I3STATUS_VERSION)'
 else
   VERSION:=$(shell git describe --tags --abbrev=0)
   I3STATUS_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"