Skip to content

Commit

Permalink
Fix summary output for MPI Standard Version
Browse files Browse the repository at this point in the history
 * Add value for `MPI_VERSION`/`MPI_SUBVERSION` to the `AC_SUBST`
   so that configure can later display it in the summary.

Signed-off-by: Joshua Hursey <jhursey@us.ibm.com>
  • Loading branch information
jjhursey committed Jan 27, 2023
1 parent ac38f49 commit feb48ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/opal_save_version.m4
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dnl University of Stuttgart. All rights reserved.
dnl Copyright (c) 2004-2005 The Regents of the University of California.
dnl All rights reserved.
dnl Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
dnl Copyright (c) 2022 IBM Corporation. All rights reserved.
dnl Copyright (c) 2022-2023 IBM Corporation. All rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
Expand Down Expand Up @@ -74,8 +74,8 @@ AC_DEFUN([OPAL_SAVE_MPI_STANDARD_VERSION], [
AC_DEFINE_UNQUOTED([MPI_SUBVERSION], [MPI_SUBVERSION_NUM],
[MPI Standard Minor version number])

AC_SUBST([MPI_VERSION])
AC_SUBST([MPI_SUBVERSION])
AC_SUBST([MPI_VERSION], [MPI_VERSION_NUM])
AC_SUBST([MPI_SUBVERSION], [MPI_SUBVERSION_NUM])

AC_MSG_CHECKING([MPI Standard version])
AC_MSG_RESULT([MPI_VERSION_NUM.MPI_SUBVERSION_NUM])
Expand Down

0 comments on commit feb48ad

Please sign in to comment.