summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-26 12:58:13 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-26 12:58:13 -0500
commitc4508df25d3b16f7b4d20d1cd781f320a6232c46 (patch)
tree960c9ad67fab1196e30d6bc0181d611f991f9fb7 /pkgs/stdenv
parent80524db331e6dbd75aaba12f7097a6be269ac7c6 (diff)
parent87379637357f362abe47cc8a86fd7f2735f6180a (diff)
downloadnixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar.gz
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar.bz2
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar.lz
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar.xz
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.tar.zst
nixpkgs-c4508df25d3b16f7b4d20d1cd781f320a6232c46.zip
Merge remote-tracking branch 'obsidian/ghcjs-cross-without-cc-19.09' into ghcjs-cross-without-cc
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/cross/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/cross/default.nix b/pkgs/stdenv/cross/default.nix
index 44d412e041b..cc49af7de3b 100644
--- a/pkgs/stdenv/cross/default.nix
+++ b/pkgs/stdenv/cross/default.nix
@@ -62,7 +62,7 @@ in lib.init bootStages ++ [
              # `null` or skipping the attribute would cause an eval failure
              # `tryEval` wouldn't catch, wrecking accessing previous stages
              # when there is a C compiler and everything should be fine.
-             then throw "no C compile provided for this platform"
+             then throw "no C compiler provided for this platform"
            else if crossSystem.useLLVM or false
              then buildPackages.llvmPackages_8.lldClang
            else buildPackages.gcc;