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 ion value='koszko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/nix/nix-daemon
AgeCommit message (Expand)Author
2020-11-29Use substitute servers on the local network....Mathieu Othacehe
2019-11-26guix build, daemon: Rename "--no-build-hook" to "--no-offload"....Ludovic Courtès
2019-10-16daemon: Make 'profiles/per-user' non-world-writable....Ludovic Courtès
2019-09-16daemon: Include 'config.h' in 'nix-daemon.cc'....Timothy Sample
2019-09-08daemon: Run 'guix substitute' directly and assume a single substituter....Ludovic Courtès
2019-09-08daemon: Run 'guix offload' directly....Ludovic Courtès
2019-02-04daemon: Add "/guix" to default 'nixLibexecDir'....Ludovic Courtès
2019-02-04daemon: Remove the 'NIX_SUBSTITUTERS' environment variable....Ludovic Courtès
2018-12-16daemon: Use unbranded phrases in comments and messages....Ludovic Courtès
2018-11-24daemon: Ignore '--keep-failed' for TCP/IP clients....Ludovic Courtès
2018-11-14daemon: Install 'authenticate' script under LIBEXECDIR/guix....Ludovic Courtès
2018-10-15daemon: Support multiplexed build output....Ludovic Courtès