aboutsummaryrefslogtreecommitdiff
path: root/run-command.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-20 13:11:48 -0700
committerJunio C Hamano <gitster@pobox.com>2015-03-20 13:11:48 -0700
commitec0465ade87996214959a393239eec520daf92ea (patch)
tree714fd5f0ab87cba55d894a2031220ff7f5cf1aff /run-command.c
parent89ebf97c11a6ac2e20e0e527ae6791584d7ae7ba (diff)
parentce026cc7e2ff729c9809fef860cd696d1f7bb06c (diff)
downloadgit-ec0465ade87996214959a393239eec520daf92ea.tar.xz
Merge branch 'km/bsd-shells'
Portability fixes and workarounds for shell scripts have been added to help BSD-derived systems. * km/bsd-shells: t5528: do not fail with FreeBSD shell help.c: use SHELL_PATH instead of hard-coded "/bin/sh" git-compat-util.h: move SHELL_PATH default into header git-instaweb: use @SHELL_PATH@ instead of /bin/sh git-instaweb: allow running in a working tree subdirectory
Diffstat (limited to 'run-command.c')
-rw-r--r--run-command.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/run-command.c b/run-command.c
index 0b432cc971..3afb124c79 100644
--- a/run-command.c
+++ b/run-command.c
@@ -4,10 +4,6 @@
#include "sigchain.h"
#include "argv-array.h"
-#ifndef SHELL_PATH
-# define SHELL_PATH "/bin/sh"
-#endif
-
void child_process_init(struct child_process *child)
{
memset(child, 0, sizeof(*child));