* 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
@ -9,4 +9,12 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
configureFlags = "--disable-werror"; # needed for dietlibc build
|
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…
x
Reference in New Issue
Block a user