aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.mk
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2013-03-06 21:22:09 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2013-03-20 21:08:32 +0100
commit7669f7f73082ce9eb1aef28495773492cc5bec90 (patch)
tree62fee1a884b46c3dfdda89f0c6e468988a6779de /cgit.mk
parentcgit.mk: don't rebuild everything if CGIT_VERSION changes (diff)
downloadcgit-7669f7f73082ce9eb1aef28495773492cc5bec90.tar.xz
cgit-7669f7f73082ce9eb1aef28495773492cc5bec90.zip
cgit.mk: Use SHELL_PATH_SQ to run gen-version.sh
On some platforms (notably Solaris) /bin/sh doesn't support enough of POSIX for gen-version.sh to run. Git's Makefile provides SHELL_PATH_SQ to address this issue so we just have to use it. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'cgit.mk')
-rw-r--r--cgit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.mk b/cgit.mk
index c8ecd3a..e1aed63 100644
--- a/cgit.mk
+++ b/cgit.mk
@@ -9,7 +9,7 @@ CGIT_PREFIX = ../
# main Makefile - they are defined there.
$(CGIT_PREFIX)VERSION: force-version
- @cd $(CGIT_PREFIX) && ./gen-version.sh "$(CGIT_VERSION)"
+ @cd $(CGIT_PREFIX) && '$(SHELL_PATH_SQ)' ./gen-version.sh "$(CGIT_VERSION)"
-include $(CGIT_PREFIX)VERSION
.PHONY: force-version