summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-26 22:51:54 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-29 14:49:53 +0300
commit040fadf345ede2abd5fff9f93889c08a1e2d4d2a (patch)
treea2262b4dca8e98635f23f134b0a77d55c2ff09e8 /pkgs/development/libraries/glibc
parent55fa3b52a36d821799c77a1e019847e7f748759b (diff)
downloadnixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar.gz
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar.bz2
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar.lz
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar.xz
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.tar.zst
nixpkgs-040fadf345ede2abd5fff9f93889c08a1e2d4d2a.zip
glibc_multi: Fix unnoticed output shuffle
Diffstat (limited to 'pkgs/development/libraries/glibc')
-rw-r--r--pkgs/development/libraries/glibc/multi.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/glibc/multi.nix b/pkgs/development/libraries/glibc/multi.nix
index 0d7bed99f22..c7c69b879fb 100644
--- a/pkgs/development/libraries/glibc/multi.nix
+++ b/pkgs/development/libraries/glibc/multi.nix
@@ -6,7 +6,7 @@ let
   glibc64 = glibc;
 in
 runCommand "${nameVersion.name}-multi-${nameVersion.version}"
-  { outputs = [ "dev" "out" "bin" ]; } # TODO: no static version here (yet)
+  { outputs = [ "bin" "dev" "out"]; } # TODO: no static version here (yet)
   ''
     mkdir -p "$out/lib"
     ln -s '${glibc64.out}'/lib/* "$out/lib"