mirror of
https://github.com/git/git.git
synced 2026-03-13 10:23:30 +01:00
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:
2
Makefile
2
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')
|
||||
|
||||
Reference in New Issue
Block a user