From eebdca3a654bfb95018514d5b5b8803c1fcd3343 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 19 Feb 2009 19:51:54 +0100 Subject: [PATCH] Revert unnecessary quoting of SHELL_PATH In bf788d7(Makefile: be nice when running in a path containing spaces), the Makefile was changed so that the SHELL_PATH is quoted, but that is actually not necessary, as we still have POSIX paths at that point, and we use /bin/sh which has no space in it. Signed-off-by: Johannes Schindelin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be00623c8..0b0628a98 100644 --- a/Makefile +++ b/Makefile @@ -161,7 +161,7 @@ all:: # broken, or spawning external process is slower than built-in grep git has). GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE - @"$(SHELL_PATH)" ./GIT-VERSION-GEN + @$(SHELL_PATH) ./GIT-VERSION-GEN -include GIT-VERSION-FILE uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') -- 2.11.4.GIT