From 5ea06e2014a910240408f74b9dab2128a30fd06c Mon Sep 17 00:00:00 2001 From: Jason Riedy Date: Wed, 25 Jan 2006 12:37:51 -0800 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3046056024..245f658375 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. -- 2.11.4.GIT