Patch originally from https://sources.debian.net/patches/erlang/1:20.0.1%2Bdfsg-2/man.patch/ by Francois-Denis Gonthier . Patch description rewritten for Guix. This patch allows access to the man page with the 'erl -man' command (Erlang manual pages are placed to /gnu/store/..erlang../share/man/ hierarchy as other man pages.) --- a/erts/etc/common/erlexec.c +++ b/erts/etc/common/erlexec.c @@ -709,8 +709,10 @@ error("-man not supported on Windows"); #else argv[i] = "man"; - erts_snprintf(tmpStr, sizeof(tmpStr), "%s/man", rootdir); - set_env("MANPATH", tmpStr); + /* + * Conform to erlang-manpages content. + */ + putenv(strsave("MANSECT=1:3:5:7")); execvp("man", argv+i); error("Could not execute the 'man' command."); #endif '>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/freeipmi.scm
AgeCommit message (Expand)Author
2019-02-04gnu: freeipmi: Update to 1.6.3....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.3. Tobias Geerinckx-Rice
2018-05-05gnu: freeipmi: Update to 1.6.2....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.2. Marius Bakke
2018-02-13gnu: freeipmi: Update to 1.6.1....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.1. Marius Bakke
2017-08-18gnu: freeipmi: Update to 1.5.7....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.5.7. Efraim Flashner
2017-07-06gnu: freeipmi: Remove readline from inputs....This is a follow-up to 694b7c3180bd8711843f904a4ea0ec5ad4d3f2bb. * gnu/packages/freeimpi.scm (freeipmi)[inputs]: Really remove readline. Efraim Flashner
2017-07-06gnu: freeipmi: Update to 1.5.6....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.5.6. [inputs]: Remove readline. Efraim Flashner