From 98e2c3295141ddf8abc1a4d7665c333e10def060 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 29 Nov 2000 17:07:24 -0500 Subject: [svn-r3028] Purpose: Bug Fix Description: T3E and J90 were complaining about not being able to make for ADD_PARALLEL_FILES. Solution: Somehow the make on these machines must have been weirded out by the funky pattern matching/replacement that's being done and couldn't handle a null macro. I now assign "no" to the macro explicitly Platforms tested: T3E --- fortran/configure | 2 +- fortran/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fortran/configure b/fortran/configure index 6f2ab17..bed85f5 100755 --- a/fortran/configure +++ b/fortran/configure @@ -2565,7 +2565,7 @@ if test -n "$PARALLEL"; then TESTPARALLEL=testpar fi -ADD_PARALLEL_FILES="" +ADD_PARALLEL_FILES="no" if test -n "$PARALLEL"; then cat >> confdefs.h <<\EOF #define HAVE_PARALLEL 1 diff --git a/fortran/configure.in b/fortran/configure.in index 7f1769b..eaaa75a 100644 --- a/fortran/configure.in +++ b/fortran/configure.in @@ -455,7 +455,7 @@ fi dnl ---------------------------------------------------------------------- dnl Print some other parallel information and do some sanity checks. dnl -ADD_PARALLEL_FILES="" +ADD_PARALLEL_FILES="no" if test -n "$PARALLEL"; then dnl We are building a parallel library AC_DEFINE(HAVE_PARALLEL) -- cgit v0.12