Unverified Commit a65df1ed authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #193894 from amjoseph-nixpkgs/pr/nixos/arch-without-inferiors

parents 2f957178 d3b65938
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -819,7 +819,7 @@ in
          optionals (pkgs.hostPlatform ? gcc.arch) (
            # a builder can run code for `gcc.arch` and inferior architectures
            [ "gccarch-${pkgs.hostPlatform.gcc.arch}" ] ++
            map (x: "gccarch-${x}") systems.architectures.inferiors.${pkgs.hostPlatform.gcc.arch}
            map (x: "gccarch-${x}") (systems.architectures.inferiors.${pkgs.hostPlatform.gcc.arch} or [])
          )
        );
      }