Skip to content

Commit 31e9840

Browse files
authored
Merge pull request #2636 from jsquyres/pr/fix-cflags-uniqueness
configury: fix OMPI_UNIQUE -> OMPI_FLAGS_UNIQUE
2 parents d772fcf + fb74c80 commit 31e9840

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/ompi_fortran_check_real16_c_equiv.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
1010
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.
13-
dnl Copyright (c) 2008-2013 Cisco Systems, Inc. All rights reserved.
13+
dnl Copyright (c) 2008-2016 Cisco Systems, Inc. All rights reserved.
1414
dnl Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved.
1515
dnl Copyright (c) 2015 Research Organization for Information Science
1616
dnl and Technology (RIST). All rights reserved.
@@ -49,7 +49,7 @@ AC_DEFUN([OMPI_FORTRAN_CHECK_REAL16_C_EQUIV],[
4949
[AC_MSG_CHECKING([if intel compiler _Quad == REAL*16])
5050
CFLAGS_save="$CFLAGS"
5151
CFLAGS="$CFLAGS -Qoption,cpp,--extended_float_types"
52-
OPAL_UNIQ([CFLAGS])
52+
OPAL_FLAGS_UNIQ([CFLAGS])
5353
OMPI_FORTRAN_CHECK_REAL16_EQUIV_TYPE([_Quad], [q])
5454
AS_IF([test "$happy" = "yes"],
5555
[OMPI_FORTRAN_REAL16_C_TYPE="_Quad"
@@ -59,7 +59,7 @@ AC_DEFUN([OMPI_FORTRAN_CHECK_REAL16_C_EQUIV],[
5959
])
6060
AS_IF([test "$opal_cv_c_compiler_vendor" = "gnu" && test "$ac_cv_type___float128" = "yes"],
6161
[AC_MSG_CHECKING([if gnu compiler __float128 == REAL*16])
62-
OPAL_UNIQ([CFLAGS])
62+
OPAL_FLAGS_UNIQ([CFLAGS])
6363
OMPI_FORTRAN_CHECK_REAL16_EQUIV_TYPE([__float128], [q])
6464
AS_IF([test "$happy" = "yes"],
6565
[OMPI_FORTRAN_REAL16_C_TYPE="__float128"

0 commit comments

Comments
 (0)