stdenv/bootstrap-tools: remove powerpc64 special case

Now that powerpc64 is always ELFv2, we can unconditionally use musl
tools here.
This commit is contained in:
Ryan Burns 2021-03-15 19:23:35 -07:00
parent 7b9c1dbd28
commit 68823d6d65

View file

@ -19,8 +19,7 @@ in with pkgs; rec {
tarMinimal = gnutar.override { acl = null; };
busyboxMinimal = busybox.override {
useMusl = with stdenv.targetPlatform; !isRiscV &&
(system == "powerpc64-linux" -> parsed.abi.name != "elfv1");
useMusl = !stdenv.targetPlatform.isRiscV;
enableStatic = true;
enableMinimal = true;
extraConfig = ''