Skip to content

Commit feb48ad

Browse files
committed
Fix summary output for MPI Standard Version
* 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>
1 parent ac38f49 commit feb48ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/opal_save_version.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dnl University of Stuttgart. All rights reserved.
1111
dnl Copyright (c) 2004-2005 The Regents of the University of California.
1212
dnl All rights reserved.
1313
dnl Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
14-
dnl Copyright (c) 2022 IBM Corporation. All rights reserved.
14+
dnl Copyright (c) 2022-2023 IBM Corporation. All rights reserved.
1515
dnl $COPYRIGHT$
1616
dnl
1717
dnl Additional copyrights may follow
@@ -74,8 +74,8 @@ AC_DEFUN([OPAL_SAVE_MPI_STANDARD_VERSION], [
7474
AC_DEFINE_UNQUOTED([MPI_SUBVERSION], [MPI_SUBVERSION_NUM],
7575
[MPI Standard Minor version number])
7676

77-
AC_SUBST([MPI_VERSION])
78-
AC_SUBST([MPI_SUBVERSION])
77+
AC_SUBST([MPI_VERSION], [MPI_VERSION_NUM])
78+
AC_SUBST([MPI_SUBVERSION], [MPI_SUBVERSION_NUM])
7979

8080
AC_MSG_CHECKING([MPI Standard version])
8181
AC_MSG_RESULT([MPI_VERSION_NUM.MPI_SUBVERSION_NUM])

0 commit comments

Comments
 (0)