Skip to content

Commit ac390ab

Browse files
authored
Merge pull request #8393 from cniethammer/autoconf-2.70-error-fix
Fix error with stricter quoting requirements of autoconf-2.70
2 parents b0c9e24 + 9901325 commit ac390ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/opal_check_cuda.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ AS_IF([test "$opal_check_cuda_happy" = "yes"],
9191
# If we have CUDA support, check to see if we have support for SYNC_MEMOPS
9292
# which was first introduced in CUDA 6.0.
9393
AS_IF([test "$opal_check_cuda_happy"="yes"],
94-
AC_CHECK_DECL([CU_POINTER_ATTRIBUTE_SYNC_MEMOPS], [CUDA_SYNC_MEMOPS=1], [CUDA_SYNC_MEMOPS=0],
95-
[#include <$opal_cuda_incdir/cuda.h>]),
94+
[AC_CHECK_DECL([CU_POINTER_ATTRIBUTE_SYNC_MEMOPS], [CUDA_SYNC_MEMOPS=1], [CUDA_SYNC_MEMOPS=0],
95+
[#include <$opal_cuda_incdir/cuda.h>])],
9696
[])
9797

9898
# If we have CUDA support, check to see if we have CUDA 6.0 or later.

0 commit comments

Comments
 (0)