diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-27 22:02:22 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-27 22:02:22 (GMT) |
commit | 91798be1c37e152281f3ab913e4bea6a29765ba5 (patch) | |
tree | 21fb6101bb6eec02cbb8b1694994f44ad9a79ec5 | |
parent | 1a4c6d996697bc5080426314e9f0f1167d2115cc (diff) | |
download | hdf5-91798be1c37e152281f3ab913e4bea6a29765ba5.zip hdf5-91798be1c37e152281f3ab913e4bea6a29765ba5.tar.gz hdf5-91798be1c37e152281f3ab913e4bea6a29765ba5.tar.bz2 |
[svn-r4072]
Purpose:
SP F90 parallel port
Description:
Makefile.in did not have thdf5.lo on the compilation line, that caused linking
problems for the test on SP3 (gseaborg)
Solution:
Added the file name to the compilation line.
Platforms tested:
NERSC IBM SP
-rw-r--r-- | fortran/testpar/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index 2e57b95..0848c94 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -42,6 +42,6 @@ $(TEST_PROGS): $(LIBHDF5) $(LIBH5TEST) $(TEST_OBJ): $(TEST_HDR) ptesthdf5_fortran: thdf5.lo thyperslab_wr.lo tcheck.lo ptesthdf5_fortran.lo - @$(LT_LINK_FEXE) $(FFLAGS) -o $@ ptesthdf5_fortran.lo thyperslab_wr.lo tcheck.lo $(LIBFORTRAN) $(LIBHDF5) $(LIBS) + @$(LT_LINK_FEXE) $(FFLAGS) -o $@ ptesthdf5_fortran.lo thdf5.lo thyperslab_wr.lo tcheck.lo $(LIBFORTRAN) $(LIBHDF5) $(LIBS) @CONCLUDE@ |