Skip to content

Commit

Permalink
m4: ACX_PROG_MPIRUN: redirect stderr to config.log.
Browse files Browse the repository at this point in the history
  • Loading branch information
skosukhin committed Feb 21, 2024
1 parent 747a015 commit 89af5d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions m4/acx_prog_mpirun.m4
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ m4_define([_ACX_PROG_MPIRUN],
for acx_candidate in "$[@]"; do
_AS_ECHO_LOG(
[acx_exec_result=`$acx_candidate -n m4_default([$6], [2]) dnl
./conftest$ac_exeext 2>/dev/null`])
./conftest$ac_exeext 2>&AS_MESSAGE_LOG_FD`])
acx_exec_result=dnl
`$acx_candidate -n m4_default([$6], [2]) ./conftest$ac_exeext 2>/dev/null`
`$acx_candidate -n m4_default([$6], [2]) dnl
./conftest$ac_exeext 2>&AS_MESSAGE_LOG_FD`
acx_status=$?
_AS_ECHO_LOG([\$? = $acx_status])
AS_IF([test $acx_status -eq 0],
Expand Down

0 comments on commit 89af5d0

Please sign in to comment.