summary refs log tree commit diff
path: root/pkgs/build-support/cc-wrapper
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-18 19:22:22 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-18 19:22:57 -0400
commita44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8 (patch)
tree4cd6b922f92f0a042ef447b2ae529c097bd16d8d /pkgs/build-support/cc-wrapper
parent51179c6e888b03ae3b42f67e2bc85ca0112d7677 (diff)
downloadnixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar.gz
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar.bz2
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar.lz
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar.xz
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.tar.zst
nixpkgs-a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8.zip
cc-wrapper: Remove obsolete assertion
This was just causing evaluation problems on cross.
Diffstat (limited to 'pkgs/build-support/cc-wrapper')
-rw-r--r--pkgs/build-support/cc-wrapper/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix
index 0114170b8eb..4bbd6c205e5 100644
--- a/pkgs/build-support/cc-wrapper/default.nix
+++ b/pkgs/build-support/cc-wrapper/default.nix
@@ -21,8 +21,6 @@ assert !nativeTools ->
 assert !(nativeLibc && noLibc);
 assert (noLibc || nativeLibc) == (libc == null);
 
-assert stdenv.targetPlatform != stdenv.hostPlatform -> runCommand != null;
-
 # For ghdl (the vhdl language provider to gcc) we need zlib in the wrapper.
 assert cc.langVhdl or false -> zlib != null;