[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
This commit is contained in:
Bill Wendling 2000-11-29 17:07:24 -05:00
parent 22303f9d3f
commit 98e2c32951
2 changed files with 2 additions and 2 deletions

2
fortran/configure vendored
View File

@ -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

View File

@ -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)