summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-04-18 22:55:27 +0000
committerAlyssa Ross <hi@alyssa.is>2021-04-19 10:35:28 +0000
commit71326310d8ef47fb74b853dbb7f70e8557af8196 (patch)
tree8dbdf8400ab22b5e0ef001afb3bb0c2c7aed1966 /pkgs/development/libraries/openssl
parentaa41080e22e3bc8712e1587a453a19f90acc11bf (diff)
downloadnixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar.gz
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar.bz2
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar.lz
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar.xz
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.tar.zst
nixpkgs-71326310d8ef47fb74b853dbb7f70e8557af8196.zip
openssl: remove redundant platform check
This is already covered by the x86_64-linux check above.
Diffstat (limited to 'pkgs/development/libraries/openssl')
-rw-r--r--pkgs/development/libraries/openssl/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index fda0c71655a..92f9a111195 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -77,9 +77,7 @@ let
                                      (stdenv.hostPlatform.parsed.cpu.bits != 32)
                                      (toString stdenv.hostPlatform.parsed.cpu.bits)}"
         else if stdenv.hostPlatform.isLinux
-          then (if stdenv.hostPlatform.isx86_64
-            then "./Configure linux-x86_64"
-            else "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}")
+          then "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
         else if stdenv.hostPlatform.isiOS
           then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
         else