Skip to content

Commit 04aa217

Browse files
author
Damian Rouson
committed
Reverted --MPI-path to --with-mpi
1 parent 6d80784 commit 04aa217

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ info "-I (--install-version): ${arg_I}"
154154
info "-j (--num-threads): ${arg_j}"
155155
info "-l (--list-packages): ${arg_l}"
156156
info "-m (--with-cmake): ${arg_m}"
157-
info "-M (--MPI-path): ${arg_M}"
157+
info "-M (--with-mpi): ${arg_M}"
158158
info "-n (--no-color): ${arg_n}"
159159
info "-p (--package): ${arg_p}"
160160
info "-P (--print-path): ${arg_P}"

install.sh-usage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
-j --num-threads [arg] Number of threads to use when invoking make. Default="1"
1111
-l --list-packages Print packages this script can install.
1212
-m --with-cmake [arg] Use specified CMake installation. Default="cmake"
13-
-M --MPI-path [arg] Use specified MPI installation.
13+
-M --with-mpi [arg] Use specified MPI installation.
1414
-n --no-color Disable color output.
1515
-p --package [arg] Install specified package. Default="opencoarrays"
1616
-P --print-path [arg] Print installation directory for specified package.

prerequisites/build.sh-usage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
-l --list-packages List the packages this script can install.
1313
-L --list-branches List the repository branches this script can download.
1414
-m --with-cmake [arg] Use the specified CMake installation. Default="cmake"
15-
-M --MPI-path [arg] Use the specified MPI installation.
15+
-M --with-mpi [arg] Use the specified MPI installation.
1616
-n --no-color Disable color output.
1717
-p --package [arg] Package to install.
1818
-P --print-path [arg] Print installation path for package specified in argument.

prerequisites/install-functions/find_or_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ find_or_install()
114114
# If the user specified a Fortran compiler, verify that mpif90 wraps the specified compiler
115115
if [[ ! -z "${arg_M:-}" ]]; then
116116

117-
echo -e "$this_script: Using the $package specified by -M or --MPI-path: ${arg_M}\n"
117+
echo -e "$this_script: Using the $package specified by -M or --with-mpi: ${arg_M}\n"
118118
export MPIFC="${arg_M}"/bin/mpif90
119119
export MPICC="${arg_M}"/bin/mpicc
120120
export MPICXX="${arg_M}"/bin/mpicxx

0 commit comments

Comments
 (0)