Skip to content

Commit

Permalink
mpich: handle empty withPm correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneSerge committed Jan 12, 2024
1 parent 48025cb commit 9bf0a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/mpich/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
withPm
else
builtins.filter builtins.isString (builtins.split ":" withPm);
withPm' = builtins.concatStringsSep ":" processManagers;
withPm' = if processManagers != [ ] then builtins.concatStringsSep ":" processManagers else "no";
in

assert (ch4backend.pname == "ucx" || ch4backend.pname == "libfabric");
Expand Down

0 comments on commit 9bf0a82

Please sign in to comment.