aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJason Riedy <ejr@EECS.Berkeley.EDU>2006-01-25 12:37:51 -0800
committerJunio C Hamano <junkio@cox.net>2006-01-25 15:10:37 -0800
commit5ea06e2014a910240408f74b9dab2128a30fd06c (patch)
tree0489f88d6504f571765cfb1d02fb982e6114eb3d /Makefile
parentfc5be4fdaa063a667d17ae40e4ad130e2177b0f8 (diff)
downloadgit-5ea06e2014a910240408f74b9dab2128a30fd06c.tar.gz
git-5ea06e2014a910240408f74b9dab2128a30fd06c.tar.xz
Run GIT-VERSION-GEN with $(SHELL), not sh.
Alas, not all shells named sh are capable enough to run GIT-VERSION-GEN. Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 304605602..245f65837 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ all:
# change being considered an inode change from the update-cache perspective.
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
- @sh ./GIT-VERSION-GEN
+ @$(SHELL) ./GIT-VERSION-GEN
-include GIT-VERSION-FILE
# CFLAGS and LDFLAGS are for the users to override from the command line.