aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Kuivinen <freku045@student.liu.se>2006-02-14 00:15:14 +0100
committerJunio C Hamano <junkio@cox.net>2006-02-13 22:13:22 -0800
commit365463851303f74eb5e5be7101811f215602fcd9 (patch)
tree0cefe7428789c567196851724faaa8684cda4edd
parent4631c0035dc26ffab3a3832a5d9e9f55245f00f7 (diff)
downloadgit-365463851303f74eb5e5be7101811f215602fcd9.tar.gz
git-365463851303f74eb5e5be7101811f215602fcd9.tar.xz
s/SHELL/SHELL_PATH/ in Makefile
With the current Makefile we don't use the shell chosen by the platform specific defines when we invoke GIT-VERSION-GEN. Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f240e452b..d40aa6a7d 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
- @$(SHELL) ./GIT-VERSION-GEN
+ @$(SHELL_PATH) ./GIT-VERSION-GEN
-include GIT-VERSION-FILE
# CFLAGS and LDFLAGS are for the users to override from the command line.