diff options
author | Jason Riedy <ejr@EECS.Berkeley.EDU> | 2006-01-25 12:37:51 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-25 15:10:37 -0800 |
commit | 5ea06e2014a910240408f74b9dab2128a30fd06c (patch) | |
tree | 0489f88d6504f571765cfb1d02fb982e6114eb3d /Makefile | |
parent | fc5be4fdaa063a667d17ae40e4ad130e2177b0f8 (diff) | |
download | git-5ea06e2014a910240408f74b9dab2128a30fd06c.tar.gz |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |