Skip to content

Commit b3a0f5f

Browse files
author
Damian Rouson
committed
Fix argument typo in patched-trunk-install.sh
--with-C becomes --with-cxx in final 2 statements
1 parent 85454d6 commit b3a0f5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

developer-scripts/patched-trunk-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ echo "Building MPICH with the patched compilers."
175175
./install.sh --package mpich --yes-to-all \
176176
--with-fortran "${patched_GCC_install_path}/bin/gfortran" \
177177
--with-c "${patched_GCC_install_path}/bin/gcc" \
178-
--with-C "${patched_GCC_install_path}/bin/g++"
178+
--with-cxx "${patched_GCC_install_path}/bin/g++"
179179

180180
# Verify that MPICH installed where expected
181181
mpich_install_path=$(./install.sh -P mpich)
@@ -190,5 +190,5 @@ echo "Building OpenCoarrays with the patched compilers"
190190
./install.sh --yes-to-all \
191191
--with-fortran "${patched_GCC_install_path}/bin/gfortran" \
192192
--with-c "${patched_GCC_install_path}/bin/gcc" \
193-
--with-C "${patched_GCC_install_path}/bin/g++" \
193+
--with-cxx "${patched_GCC_install_path}/bin/g++" \
194194
--with-mpi "${mpich_install_path}"

0 commit comments

Comments
 (0)