From: Ricardo Nabinger Sanchez Date: Thu, 25 Aug 2016 19:57:46 +0000 (-0400) Subject: Use -M parameter instead of --manpath when invoking man(1) X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=b07e7ef09b90a6bbb055f49bb2a6586dd45e73c9 Use -M parameter instead of --manpath when invoking man(1) Older versions of man (and the implementation used in FreeBSD) do not support the long version of the --manpath/-M option. Use '-M' in the interest of portability. Fixes #1043 Signed-off-by: Ricardo Nabinger Sanchez Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/utils.c b/src/common/utils.c index 1e52ae0aa..16d2f817a 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -1375,11 +1375,11 @@ int utils_show_man_page(int section, const char *page_name) /* * Execute man pager. * - * We provide --manpath to man here because LTTng-tools can + * We provide -M to man here because LTTng-tools can * be installed outside /usr, in which case its man pages are * not located in the default /usr/share/man directory. */ - ret = execlp(man_bin_path, "man", "--manpath", MANPATH, + ret = execlp(man_bin_path, "man", "-M", MANPATH, section_string, page_name, NULL); return ret; }