Skip to content

Commit 1e1472e

Browse files
committedJul 13, 2017
llvmPackages_4: don't change *.outputs
It was blocking channel(s). See: #26818 (comment)
1 parent 9d28cd9 commit 1e1472e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkgs/development/compilers/llvm/4/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let
1616
# Add man output without introducing extra dependencies.
1717
overrideManOutput = drv:
1818
let drv-manpages = drv.override { enableManpages = true; }; in
19-
drv // { man = drv-manpages.man; outputs = drv.outputs ++ ["man"]; };
19+
drv // { man = drv-manpages.man; /*outputs = drv.outputs ++ ["man"];*/ };
2020

2121
llvm = callPackage ./llvm.nix {
2222
inherit compiler-rt_src stdenv;

0 commit comments

Comments
 (0)
Please sign in to comment.