From: Jason Riedy Date: Wed, 25 Jan 2006 20:37:51 +0000 (-0800) Subject: Run GIT-VERSION-GEN with $(SHELL), not sh. X-Git-Tag: v1.2.0~110 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=5ea06e2014a910240408f74b9dab2128a30fd06c;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 30460560..245f6583 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.