summaryrefslogtreecommitdiffstats
path: root/hl/fortran
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2019-01-04 13:26:15 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2019-01-04 13:26:15 (GMT)
commit30abf02de229e606f4ba05afa00ca313f51e7a1a (patch)
treea8408e6d10c833ea9013a0def9f9587e1a2ec573 /hl/fortran
parent9ac12ce29956a4accbec2c15bef45e793fc466f8 (diff)
downloadhdf5-30abf02de229e606f4ba05afa00ca313f51e7a1a.zip
hdf5-30abf02de229e606f4ba05afa00ca313f51e7a1a.tar.gz
hdf5-30abf02de229e606f4ba05afa00ca313f51e7a1a.tar.bz2
Add symlinks named libhdf5_hl_fortran* to libhdf5hl_fortran in
Makefile.am to match cmake install and the name pattern for other hl lib files. Add missing ';' to test/dsets.c line 13075.
Diffstat (limited to 'hl/fortran')
-rw-r--r--hl/fortran/src/Makefile.am13
1 files changed, 13 insertions, 0 deletions
diff --git a/hl/fortran/src/Makefile.am b/hl/fortran/src/Makefile.am
index a495e220..a9beb20 100644
--- a/hl/fortran/src/Makefile.am
+++ b/hl/fortran/src/Makefile.am
@@ -50,6 +50,19 @@ libhdf5hl_fortran_la_SOURCES=H5DSfc.c H5LTfc.c H5IMfc.c H5IMcc.c H5TBfc.c \
# HDF5 HL Fortran library depends on HDF5 Library.
libhdf5hl_fortran_la_LIBADD=$(LIBH5_HL) $(LIBH5F)
+# The name of the lib file doesn't follow the same pattern as the other hl lib
+# files, namely libhdf5_hl_*. Add a symlink with the compliant name to the
+# actual lib file.
+install-exec-hook:
+ cd $(DESTDIR)$(libdir) && \
+ if test -f libhdf5hl_fortran.a; then \
+ $(LN_S) libhdf5hl_fortran.a libhdf5_hl_fortran.a; \
+ fi; \
+ if test -f libhdf5hl_fortran.so; then \
+ $(LN_S) libhdf5hl_fortran.so libhdf5_hl_fortran.so; \
+ fi;
+
+
# Fortran module files can have different extensions and different names
# (e.g., different capitalizations) on different platforms. Write rules
# for them explicitly rather than trying to teach automake about them.