File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ elseif binary == ""
164
164
end
165
165
end
166
166
end
167
- elseif binary == " MPICH_jll"
167
+ elseif binary == " MPICH_jll"
168
168
@info " using MPICH_jll"
169
169
deps = quote
170
170
using MPICH_jll
@@ -173,7 +173,7 @@ elseif binary == "MPICH_jll"
173
173
const mpiexec_path = MPICH_jll. mpiexec_path
174
174
__init__deps () = nothing
175
175
end
176
- elseif binary == " OpenMPI_jll"
176
+ elseif binary == " OpenMPI_jll"
177
177
@info " using OpenMPI_jll"
178
178
deps = quote
179
179
using OpenMPI_jll
@@ -188,7 +188,7 @@ elseif binary == "OpenMPI_jll"
188
188
ENV [" OPAL_PREFIX" ] = OpenMPI_jll. artifact_dir
189
189
end
190
190
end
191
- elseif binary == " MicrosoftMPI_jll"
191
+ elseif binary == " MicrosoftMPI_jll"
192
192
@info " using MicrosoftMPI_jll"
193
193
deps = quote
194
194
using MicrosoftMPI_jll
214
214
215
215
# only update deps.jl if it has changed.
216
216
# allows users to call Pkg.build("MPI") without triggering another round of precompilation
217
- deps_str = string (remove_line_numbers (deps))
217
+ deps_str =
218
+ """
219
+ # This file has been generated automatically.
220
+ # It will be overwritten the next time `Pkg.build("MPI")` is called.
221
+ """ *
222
+ string (remove_line_numbers (deps))
218
223
219
224
if ! isfile (" deps.jl" ) || deps_str != read (" deps.jl" , String)
220
225
write (" deps.jl" , deps_str)
You can’t perform that action at this time.
0 commit comments