Skip to content

Commit

Permalink
gh-96398: Fix mpicc check in configure.ac (#117857)
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland committed Apr 13, 2024
1 parent 56ed979 commit 3095d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ EOF
if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
ac_cv_cc_name=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '`
if $(expr "//$CC" : '.*/\(.*\)') = "mpicc"; then
if test $(expr "//$CC" : '.*/\(.*\)') = "mpicc"; then
ac_cv_cc_name="mpicc"
fi
else
Expand Down

0 comments on commit 3095d02

Please sign in to comment.