From 7e1befaab8330f1d66fc190dd1ec9f6387f1efea Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 31 May 2006 03:37:31 +0000 Subject: [PATCH] * Fix M4 quoting so that AC 2.60 won't complain Submitted by: Ralf Wildenhues Reviewed by: Brian Barrett This commit was SVN r10128. --- config/ompi_config_asm.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/ompi_config_asm.m4 b/config/ompi_config_asm.m4 index 35ade803c6..9d8d7bb1e7 100644 --- a/config/ompi_config_asm.m4 +++ b/config/ompi_config_asm.m4 @@ -424,10 +424,10 @@ AC_DEFUN([OMPI_CHECK_POWERPC_REG],[ OMPI_TRY_ASSEMBLE([$ompi_cv_asm_text addi 1,1,0], [ompi_cv_asm_powerpc_r_reg=0], - OMPI_TRY_ASSEMBLE([$ompi_cv_asm_text + [OMPI_TRY_ASSEMBLE([$ompi_cv_asm_text addi r1,r1,0], [ompi_cv_asm_powerpc_r_reg=1], - AC_MSG_ERROR([Can not determine how to use PPC registers]))) + [AC_MSG_ERROR([Can not determine how to use PPC registers])])]) if test "$ompi_cv_asm_powerpc_r_reg" = "1" ; then AC_MSG_RESULT([yes]) else