From 6ff667c0daefc3d29921f9a23884c8ae9f6e8f4c Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 22 Dec 2000 13:00:32 -0500 Subject: [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 --- fortran/config/conclude.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12