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 on> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/builders.scm
AgeCommit message (Expand)Author
2021-09-17tests: Add missing module import....Marius Bakke
2021-09-07tests: Disable grafts in 'tests/builders.scm'....Ludovic Courtès
2021-07-05tests: Adjust Python "sanity" check tests....Ludovic Courtès
2021-03-30build-system: Rewrite using gexps....Ludovic Courtès
2021-02-01build/python: Add a sanity check phase....Lars-Dominik Braun
2021-01-26build-systems/gnu: Allow unpacking/repacking more kind of files....Maxim Cournoyer
2019-06-14tests: Remove expensive and pointless test....Ludovic Courtès
2018-09-22bootstrap: %bootstrap-inputs: Wrap input lists into thunks....Jan Nieuwenhuizen
2018-09-04Switch to Guile-Gcrypt....Ludovic Courtès