diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-14 17:25:31 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-14 17:25:31 (GMT) |
commit | c18e4341138228879077f3cc0f049622ef6d77c4 (patch) | |
tree | 03c80dcbb8948cc2691c6352c162b6330aa8ac89 /fortran/config | |
parent | ab65e40b464221fdeff22bef3e128d986f0ec16b (diff) | |
download | hdf5-c18e4341138228879077f3cc0f049622ef6d77c4.zip hdf5-c18e4341138228879077f3cc0f049622ef6d77c4.tar.gz hdf5-c18e4341138228879077f3cc0f049622ef6d77c4.tar.bz2 |
[svn-r3144] Purpose:
Install Fix
Description:
Fortran modules need to be installed.
Solution:
I check for the extension modules are created with and use that
during the install...
Platforms tested:
Linux
Diffstat (limited to 'fortran/config')
-rw-r--r-- | fortran/config/commence.in | 1 | ||||
-rw-r--r-- | fortran/config/conclude.in | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/fortran/config/commence.in b/fortran/config/commence.in index ae4cdff..50105e0 100644 --- a/fortran/config/commence.in +++ b/fortran/config/commence.in @@ -16,6 +16,7 @@ SHELL=/bin/sh CC=@CC@ F9X=@F9X@ +F9XMODEXT=@F9XMODEXT@ CFLAGS=@CFLAGS@ CPPFLAGS=@CPPFLAGS@ FFLAGS=@FFLAGS@ diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in index 2c1fa34..fb78874 100644 --- a/fortran/config/conclude.in +++ b/fortran/config/conclude.in @@ -66,6 +66,9 @@ install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir) ($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \ fi; \ done + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + ($(LT_INSTALL_LIB) *.$(F9XMODEXT) $(libdir)/. || exit 1); \ + fi @if test -f libhdf5.settings; then \ (set -x; $(INSTALL_DATA) libhdf5.settings $(libdir)/. || exit 1); \ fi |