* Give the real GCC a lower priority than the GCC wrapper so that both
can be installed in a user environment without conflict. This is useful if you need gcov (which isn't symlinked in the GCC wrapper). svn path=/nixpkgs/trunk/; revision=8809
This commit is contained in:
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
||||
langF77 = if nativeTools then false else gcc.langF77;
|
||||
shell = if shell == "" then stdenv.shell else shell;
|
||||
|
||||
meta = if gcc != null && (gcc ? meta) then gcc.meta else
|
||||
meta = if gcc != null && (gcc ? meta) then removeAttrs gcc.meta ["priority"] else
|
||||
{ description = "System C compiler wrapper";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user