help.c: use SHELL_PATH instead of hard-coded "/bin/sh"
If the user has set SHELL_PATH in the Makefile then we should respect that value and use it. Signed-off-by: Kyle J. McKay <mackyle@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
		
				
					committed by
					
						
						Junio C Hamano
					
				
			
			
				
	
			
			
			
						parent
						
							1b56cdf901
						
					
				
				
					commit
					b680a86a86
				
			@ -171,7 +171,7 @@ static void exec_man_cmd(const char *cmd, const char *page)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	struct strbuf shell_cmd = STRBUF_INIT;
 | 
						struct strbuf shell_cmd = STRBUF_INIT;
 | 
				
			||||||
	strbuf_addf(&shell_cmd, "%s %s", cmd, page);
 | 
						strbuf_addf(&shell_cmd, "%s %s", cmd, page);
 | 
				
			||||||
	execl("/bin/sh", "sh", "-c", shell_cmd.buf, (char *)NULL);
 | 
						execl(SHELL_PATH, SHELL_PATH, "-c", shell_cmd.buf, (char *)NULL);
 | 
				
			||||||
	warning(_("failed to exec '%s': %s"), cmd, strerror(errno));
 | 
						warning(_("failed to exec '%s': %s"), cmd, strerror(errno));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user