diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-29 22:07:24 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-29 22:07:24 (GMT) |
commit | 98e2c3295141ddf8abc1a4d7665c333e10def060 (patch) | |
tree | 443775fe90eaf83e68cfb54d976b7b9bb84a98b7 /fortran/configure.in | |
parent | 22303f9d3f867e01da2bdf7f1b9246779ca88ccb (diff) | |
download | hdf5-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/configure.in')
-rw-r--r-- | fortran/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
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) |