diff options
author | Matthew Bauer <mjbauer95@gmail.com> | 2018-02-14T22·05-0600 |
---|---|---|
committer | Matthew Bauer <mjbauer95@gmail.com> | 2018-02-15T16·20-0600 |
commit | 8f186722a97882ba41330684f37bfe8b8637eba8 (patch) | |
tree | 71e6aa7022e8e1dfb0af30fc6ff0b671900c5a0f /src/libstore/globals.hh | |
parent | 96d48318cb838cb67916e443266210c46fe4bf87 (diff) |
Set backup MANPATH in case man path isn’t set correctly.
Previously, this would fail at startup for non-NixOS installs: nix-env --help The fix for this is to just use "nixManDir" as the value for MANPATH when spawning "man". To test this, I’m using the following: $ nix-build release.nix -A build $ MANPATH= ./result/bin/nix-env --help Fixes #1627
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 508084d08acb..fd3fbec9f017 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -82,6 +82,9 @@ public: /* The directory where the main programs are stored. */ Path nixBinDir; + /* The directory where the man pages are stored. */ + Path nixManDir; + /* File name of the socket the daemon listens to. */ Path nixDaemonSocketFile; |