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
This commit is contained in:
Matthew Bauer 2018-02-14 16:05:55 -06:00
parent 96d48318cb
commit 8f186722a9
4 changed files with 6 additions and 0 deletions

View file

@ -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;