Skip to content

Commit

Permalink
gcc-wrapper-old: fix binutils and coreutils' paths
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Apr 25, 2016
1 parent daa8ba2 commit 69a0724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/build-support/gcc-wrapper-old/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ stdenv.mkDerivation {
libc = if nativeLibc then null else libc;
libc_dev = if nativeLibc then null else lib.getDev libc;
libc_bin = if nativeLibc then null else lib.getBin libc;
binutils = if nativeTools then null else binutils;
binutils = if nativeTools then null else lib.getBin binutils;
# The wrapper scripts use 'cat', so we may need coreutils
coreutils = if nativeTools then null else coreutils;
coreutils = if nativeTools then null else lib.getBin coreutils;

langC = if nativeTools then true else gcc.langC;
langCC = if nativeTools then true else gcc.langCC;
Expand Down

0 comments on commit 69a0724

Please sign in to comment.