Fix random sha1 in error message in http-fetch and http-push
[gitweb.git] / help.c
diff --git a/help.c b/help.c
index ec0d0155ac79051c3fcfbbbc72db1ea32404e069..c96b1670f33a97daef215ee691016a8bfa9555c9 100644 (file)
--- a/help.c
+++ b/help.c
@@ -255,16 +255,39 @@ static const char *cmd_to_page(const char *git_cmd)
        }
 }
 
+static void setup_man_path(void)
+{
+       struct strbuf new_path;
+       const char *old_path = getenv("MANPATH");
+
+       strbuf_init(&new_path, 0);
+
+       /* We should always put ':' after our path. If there is no
+        * old_path, the ':' at the end will let 'man' to try
+        * system-wide paths after ours to find the manual page. If
+        * there is old_path, we need ':' as delimiter. */
+       strbuf_addstr(&new_path, GIT_MAN_PATH);
+       strbuf_addch(&new_path, ':');
+       if (old_path)
+               strbuf_addstr(&new_path, old_path);
+
+       setenv("MANPATH", new_path.buf, 1);
+
+       strbuf_release(&new_path);
+}
+
 static void show_man_page(const char *git_cmd)
 {
        const char *page = cmd_to_page(git_cmd);
+       setup_man_path();
        execlp("man", "man", page, NULL);
 }
 
 static void show_info_page(const char *git_cmd)
 {
        const char *page = cmd_to_page(git_cmd);
-       execlp("info", "info", page, NULL);
+       setenv("INFOPATH", GIT_INFO_PATH, 1);
+       execlp("info", "info", "gitman", page, NULL);
 }
 
 static void show_html_page(const char *git_cmd)