summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-12-22 18:00:32 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-12-22 18:00:32 (GMT)
commit6ff667c0daefc3d29921f9a23884c8ae9f6e8f4c (patch)
treeaf0dfce6e9b758e4a59343a5abd7423365ade888 /fortran
parentb191b2bb9d227bbefb2cf7951334167bf59f537d (diff)
downloadhdf5-6ff667c0daefc3d29921f9a23884c8ae9f6e8f4c.zip
hdf5-6ff667c0daefc3d29921f9a23884c8ae9f6e8f4c.tar.gz
hdf5-6ff667c0daefc3d29921f9a23884c8ae9f6e8f4c.tar.bz2
[svn-r3190] Purpose:
Bug fix Description: This should fix the problem with installing the Fortran module files. Solution: This script determines if the HDF5 module is created. If it is, then we assume that we need to install all of the modules. I check for both upper and lowercase in the name cause I'm not sure what weird fortran compilers will do. Platforms tested: Linux
Diffstat (limited to 'fortran')
-rw-r--r--fortran/config/conclude.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in
index 2d0acde..5f3c6a2 100644
--- a/fortran/config/conclude.in
+++ b/fortran/config/conclude.in
@@ -67,7 +67,7 @@ install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
fi; \
done
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
- if test -e "*.$(F9XMODEXT)"; then \
+ if test -e "hdf5.$(F9XMODEXT)" || test -e "HDF5.$(F9XMODEXT)"; then \
((cp *.$(F9XMODEXT) $(libdir)/. && chmod 644 $(libdir)/*.$(F9XMODEXT)) || exit 1); \
fi; \
fi