From 9fcd01035d07b017c3f24c26f6f5cd22a6a7e8a4 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Fri, 10 Apr 2009 21:15:20 +0000 Subject: [PATCH] Fix a problem reported by Steve Kagl on the user's list; the posix component (which we probably don't test regularly because we probably only test environments where the other paffinity components are used) was not getting built because it had a bad configure test. This commit was SVN r20974. --- opal/mca/paffinity/posix/configure.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opal/mca/paffinity/posix/configure.m4 b/opal/mca/paffinity/posix/configure.m4 index 8f51567df2..cdaf50c2f5 100644 --- a/opal/mca/paffinity/posix/configure.m4 +++ b/opal/mca/paffinity/posix/configure.m4 @@ -10,7 +10,7 @@ # University of Stuttgart. All rights reserved. # Copyright (c) 2004-2005 The Regents of the University of California. # All rights reserved. -# Copyright (c) 2007-2008 Cisco Systems, Inc. All rights reserved. +# Copyright (c) 2007-2009 Cisco Systems, Inc. All rights reserved. # Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved. # $COPYRIGHT$ # @@ -29,7 +29,7 @@ AC_DEFUN([MCA_paffinity_posix_CONFIG],[ # Check to see if we have _SC_NPROCESSORS_ONLN AS_IF([test "$paff_posix_happy" = "yes"], [AC_MSG_CHECKING([for _SC_NPROCESSORS_ONLN]) - AS_IF([test "$OMPI_HAVE__SC_NPROCESSORS_ONLN" = "1"], + AS_IF([test "$ompi_cv_have__SC_NPROCESSORS_ONLN" = "yes"], [paff_posix_happy=yes], [paff_posix_happy=no]) AC_MSG_RESULT([(cached) $paff_posix_happy])])