Christian Couder <chriscool@xxxxxxxxxxxxx> writes: > diff --git a/help.c b/help.c > index 0f1cb71..ecc8c66 100644 > --- a/help.c > +++ b/help.c > @@ -265,6 +265,12 @@ static void show_info_page(const char *git_cmd) > execlp("info", "info", page, NULL); > } > > +static void show_html_page(const char *git_cmd) > +{ > + const char *page = cmd_to_page(git_cmd); > + execlp("git-browse-help", "git-browse-help", page, NULL); > +} > + This should be execl_git_cmd() to honor GIT_TRACE and to help transition to bindir != gitexecdir layout, I think. - 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