diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-10 01:17:16 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-10 01:17:16 (GMT) |
commit | e783f65f9f6b01cbdc7ada937a83f752dab215a8 (patch) | |
tree | 6e112e9e7636129f95153321ed071465101b19cc /fortran | |
parent | 16af7806e7b492a91bee96abdd985e35cd607e1d (diff) | |
download | hdf5-e783f65f9f6b01cbdc7ada937a83f752dab215a8.zip hdf5-e783f65f9f6b01cbdc7ada937a83f752dab215a8.tar.gz hdf5-e783f65f9f6b01cbdc7ada937a83f752dab215a8.tar.bz2 |
[svn-r6624] Purpose:
Bug Fix
Description:
The way to detect modules wasn't in there.
Solution:
Added the 'F9XMODFLAG' variable and have it pointing to the
appropriate place.
Platforms tested:
Arabica. Will test on other platforms one at a time. This won't
affect other parts of the system...
Misc. update:
Diffstat (limited to 'fortran')
-rwxr-xr-x | fortran/src/h5fc.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fortran/src/h5fc.in b/fortran/src/h5fc.in index 4e2dc05..527ed22 100755 --- a/fortran/src/h5fc.in +++ b/fortran/src/h5fc.in @@ -53,6 +53,7 @@ SHOW="eval" FCBASE="@F9X@" FLINKERBASE="@F9X@" FFLAGS="@FFLAGS@" +F9XMODFLAG="@F9XMODFLAG@" LDFLAGS="@LDFLAGS@" LIBS="@LIBS@" @@ -197,7 +198,7 @@ if test "x$do_link" = "xyes"; then link_args="$link_args ${libdir}/libhdf5_fortran.a ${libdir}/libhdf5.a" link_args="$link_args $LIBS" - $SHOW $FLINKER $FFLAGS $LDFLAGS $link_objs $link_args + $SHOW $FLINKER ${F9XMODFLAG}${libdir} $link_objs $link_args status=$? fi |