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/local.mk | |
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/local.mk')
-rw-r--r-- | src/libstore/local.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/local.mk b/src/libstore/local.mk index 239356aee8dc..c7ac534e2383 100644 --- a/src/libstore/local.mk +++ b/src/libstore/local.mk @@ -38,6 +38,7 @@ libstore_CXXFLAGS = \ -DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \ -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \ -DNIX_BIN_DIR=\"$(bindir)\" \ + -DNIX_MAN_DIR=\"$(mandir)\" \ -DSANDBOX_SHELL="\"$(sandbox_shell)\"" \ -DLSOF=\"$(lsof)\" |