Ben Walton wrote: > During the testing of the 1.7.10 rc series on Solaris for OpenCSW, it > was discovered that t7006-pager was failing [...] > --- a/run-command.c > +++ b/run-command.c > @@ -4,6 +4,10 @@ > #include "sigchain.h" > #include "argv-array.h" > > +#ifndef SHELL_PATH > +# define SHELL_PATH "/bin/sh" > +#endif > + > struct child_to_clean { > pid_t pid; > struct child_to_clean *next; > @@ -90,7 +94,7 @@ static const char **prepare_shell_cmd(const char **argv) > die("BUG: shell command is empty"); > > if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) { > - nargv[nargc++] = "sh"; > + nargv[nargc++] = SHELL_PATH; The underlying problem is an old one. Thanks for fixing it. For what it's worth, Reviewed-by: Jonathan Nieder <jrnieder@xxxxxxxxx> [...] > Essentially, the shell is a > special case of tool that should not rely on SANE_TOOL_PATH and must > be called explicitly. It is probably annoying to hear me say this, but: The above doesn't tell me _why_ it is a special case and that on Solaris users have been burned by "sh" being the original Bourne shell or a temperamental version of ksh so SHELL_PATH usually points to bash or ksh93 instead. I trust the reader enough to fill in the blank, though, so I think the patch is ok as is. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html