* 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:
Eelco Dolstra 2007-04-27 23:30:07 +00:00
parent ac80e8229b
commit cba3104ae8

View file

@ -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";
};
}