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 <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2009-02-19 19:51:54 +01:00
parent 89012a7916
commit eebdca3a65

View File

@@ -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')