summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFredrik Kuivinen <freku045@student.liu.se>2006-02-13 23:15:14 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-02-14 06:13:22 (GMT)
commit365463851303f74eb5e5be7101811f215602fcd9 (patch)
tree0cefe7428789c567196851724faaa8684cda4edd /Makefile
parent4631c0035dc26ffab3a3832a5d9e9f55245f00f7 (diff)
downloadgit-365463851303f74eb5e5be7101811f215602fcd9.zip
git-365463851303f74eb5e5be7101811f215602fcd9.tar.gz
git-365463851303f74eb5e5be7101811f215602fcd9.tar.bz2
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f240e45..d40aa6a 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.