From 194ff8a538984e6641fbdb62ab702fc16af14462 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 18 Mar 2017 19:58:24 +0200 Subject: [PATCH] gcc-snapshot: Fix eval error --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 50c08ff66508..8561f2059d01 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5028,7 +5028,7 @@ with pkgs; # and host != build), `cross' must be null but the cross-libc must still # be passed. cross = null; - libcCross = if crossSystem != null then libcCross else null; + libcCross = if targetPlatform != buildPlatform then libcCross else null; isl = if !stdenv.isDarwin then isl_0_14 else null; }));