From bf788d7e65eeaebb65ddb330c32aac0d7bd5e325 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 6 Aug 2007 22:31:42 +0100 Subject: [PATCH] Makefile: be nice when running in a path containing spaces Without this patch, GIT-VERSION-GEN is not able to run. Signed-off-by: Johannes Schindelin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 47b1fdc326..d42734aeef 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ all: # 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')