summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-29 22:07:24 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-29 22:07:24 (GMT)
commit98e2c3295141ddf8abc1a4d7665c333e10def060 (patch)
tree443775fe90eaf83e68cfb54d976b7b9bb84a98b7 /fortran
parent22303f9d3f867e01da2bdf7f1b9246779ca88ccb (diff)
downloadhdf5-98e2c3295141ddf8abc1a4d7665c333e10def060.zip
hdf5-98e2c3295141ddf8abc1a4d7665c333e10def060.tar.gz
hdf5-98e2c3295141ddf8abc1a4d7665c333e10def060.tar.bz2
[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
Diffstat (limited to 'fortran')
-rwxr-xr-xfortran/configure2
-rw-r--r--fortran/configure.in2
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)