summary refs log tree commit diff
path: root/pkgs/development/compilers/oraclejdk
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-12-06 00:06:43 +0100
committerGraham Christensen <graham@grahamc.com>2017-12-12 18:08:10 -0500
commit3a110ea3f96db56012f7f2707e842593a7d7c5b8 (patch)
tree727bb87c20c860814a494875af0b874d3b977bbb /pkgs/development/compilers/oraclejdk
parent76bf375a162d81d49b274eb07d6a33a74fe8850f (diff)
downloadnixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.gz
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.bz2
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.lz
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.xz
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.zst
nixpkgs-3a110ea3f96db56012f7f2707e842593a7d7c5b8.zip
treewide platform checks: `abort` -> `throw`
They aren't meant to be critical (uncatchable) errors.
Tested with nix-env + checkMeta:
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
Diffstat (limited to 'pkgs/development/compilers/oraclejdk')
-rw-r--r--pkgs/development/compilers/oraclejdk/jdk-linux-base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
index fadae3eb592..554c322781f 100644
--- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
@@ -44,7 +44,7 @@ assert stdenv.system == "i686-linux"
 assert swingSupport -> xorg != null;
 
 let
-  abortArch = abort "jdk requires i686-linux, x86_64-linux, aarch64-linux or armv7l-linux";
+  abortArch = throw "Unsupported system: ${stdenv.system}";
 
   /**
    * The JRE libraries are in directories that depend on the CPU.