mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
openssl: remove redundant platform check
This is already covered by the x86_64-linux check above.
This commit is contained in:
parent
aa41080e22
commit
71326310d8
1 changed files with 1 additions and 3 deletions
|
@ -77,9 +77,7 @@ let
|
||||||
(stdenv.hostPlatform.parsed.cpu.bits != 32)
|
(stdenv.hostPlatform.parsed.cpu.bits != 32)
|
||||||
(toString stdenv.hostPlatform.parsed.cpu.bits)}"
|
(toString stdenv.hostPlatform.parsed.cpu.bits)}"
|
||||||
else if stdenv.hostPlatform.isLinux
|
else if stdenv.hostPlatform.isLinux
|
||||||
then (if stdenv.hostPlatform.isx86_64
|
then "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
|
||||||
then "./Configure linux-x86_64"
|
|
||||||
else "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}")
|
|
||||||
else if stdenv.hostPlatform.isiOS
|
else if stdenv.hostPlatform.isiOS
|
||||||
then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
|
then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue