From e63348a31b86845d822d9cddf3dd27a9d67e729a Mon Sep 17 00:00:00 2001 From: Tim Mattox Date: Fri, 23 Oct 2009 01:16:45 +0000 Subject: [PATCH] Not all systems put true and false in /bin... so let $PATH work for us and not hardcode /bin/true or /bin/false in the configure.ac This updates the changes from r22113. This commit was SVN r22130. The following SVN revision numbers were found above: r22113 --> open-mpi/ompi@214e26b5395ecede5cf3c865776639b0c8283132 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a170aa0bea..05031e7e4d 100644 --- a/configure.ac +++ b/configure.ac @@ -59,8 +59,8 @@ m4_pattern_allow([m4_ifval]) AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/VERSION']) # Set up project specific AM_CONDITIONALs -AM_CONDITIONAL([PROJECT_OMPI], m4_ifdef([project_ompi], [/bin/true], [/bin/false])) -AM_CONDITIONAL([PROJECT_ORTE], m4_ifdef([project_orte], [/bin/true], [/bin/false])) +AM_CONDITIONAL([PROJECT_OMPI], m4_ifdef([project_ompi], [true], [false])) +AM_CONDITIONAL([PROJECT_ORTE], m4_ifdef([project_orte], [true], [false])) # # Start it up