mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
bashInteractive: Fix manpages since previous commits
This commit is contained in:
parent
81c360d948
commit
bd0e161f0c
@ -36,10 +36,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
outputs = [ "out" "dev" "man" "doc" "info" ];
|
||||
|
||||
# the man pages are small and useful enough
|
||||
outputMan = if interactive then "out" else null;
|
||||
outputs = [ "out" "dev" "doc" "info" ]
|
||||
# the man pages are small and useful enough, so include them in $out in interactive builds
|
||||
++ stdenv.lib.optional (!interactive) "man";
|
||||
|
||||
NIX_CFLAGS_COMPILE = ''
|
||||
-DSYS_BASHRC="/etc/bashrc"
|
||||
|
Loading…
Reference in New Issue
Block a user