Skip to content

Commit

Permalink
Fix typo masquarading (#5093)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored Nov 14, 2024
1 parent 915a7ab commit ac04b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/h5cc.in
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ case "$CC" in
kind="gcc"
;;
mpicc|mpcc|mpicc_r)
# Is this gcc masquarading as an MPI compiler?
# Is this gcc masquerading as an MPI compiler?
if test "`${CC} -v 2>&1 | sed -n 2p | cut -c1-3`" = "gcc"; then
kind="gcc"
else
Expand Down
2 changes: 1 addition & 1 deletion c++/src/h5c++.in
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ case "$CXX" in
kind="gcc"
;;
mpicc|mpcc|mpicc_r)
# Is this gcc masquarading as an MPI compiler?
# Is this gcc masquerading as an MPI compiler?
if test "`${CXX} -v 2>&1 | sed -n 2p | cut -c1-3`" = "gcc"; then
kind="gcc"
else
Expand Down

0 comments on commit ac04b86

Please sign in to comment.