From e065baafba77424066e959758681bbcc62c335f7 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 24 Jan 2016 04:28:59 +0200 Subject: [PATCH] glibc: Make one exception for output order Usages like '${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2' are much more common than the bin output. --- pkgs/development/libraries/glibc/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index e079721271b..15c455b7afb 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -110,7 +110,7 @@ stdenv.mkDerivation ({ installFlags = [ "sysconfdir=$(out)/etc" ]; - outputs = [ "bin" "dev" "out" "static" ]; + outputs = [ "out" "bin" "dev" "static" ]; buildInputs = lib.optionals (cross != null) [ gccCross ] ++ lib.optionals withGd [ gd libpng ];