* Give binutils a lower default priority than the gcc wrapper so that
"nix-env -i binutils gcc" will do the Right Thing and not give a collision. svn path=/nixpkgs/trunk/; revision=8624
This commit is contained in:
parent
ac80e8229b
commit
cba3104ae8
1 changed files with 8 additions and 0 deletions
|
@ -9,4 +9,12 @@ stdenv.mkDerivation {
|
|||
};
|
||||
inherit noSysDirs;
|
||||
configureFlags = "--disable-werror"; # needed for dietlibc build
|
||||
|
||||
meta = {
|
||||
description = "Tools for manipulating binaries (linker, assembler, etc.)";
|
||||
|
||||
/* Give binutils a lower priority than gcc-wrapper to prevent a
|
||||
collision due to the ld/as wrappers/symlinks in the latter. */
|
||||
priority = "10";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue