summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorKyle J. McKay <mackyle@gmail.com>2015-03-08 05:07:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-03-10 22:11:24 (GMT)
commit1b56cdf901f6e6a73d0edadf56afb1c878c7622a (patch)
tree14488a9878fcab13c3f779f2ea02fa206e94f9da /git-compat-util.h
parentff7a9dc2c503360190650d604dbdbc293d99b765 (diff)
downloadgit-1b56cdf901f6e6a73d0edadf56afb1c878c7622a.zip
git-1b56cdf901f6e6a73d0edadf56afb1c878c7622a.tar.gz
git-1b56cdf901f6e6a73d0edadf56afb1c878c7622a.tar.bz2
git-compat-util.h: move SHELL_PATH default into header
If SHELL_PATH is not defined we use "/bin/sh". However, run-command.c is not the only file that needs to use the default value so move it into a common header. Signed-off-by: Kyle J. McKay <mackyle@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 8b72e2a..f55234d 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -872,4 +872,8 @@ struct tm *git_gmtime_r(const time_t *, struct tm *);
#define gmtime_r git_gmtime_r
#endif
+#ifndef SHELL_PATH
+# define SHELL_PATH "/bin/sh"
+#endif
+
#endif