From 6188c31c19f1e550cb0c578eaced594493a49af3 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 10 Jan 2001 12:41:27 -0500 Subject: [svn-r3260] Purpose: Bug Fix Description: The test ``test -e "filename"'' doesn't work with some Bourne shells (for instance, on Arabica). Solution: Changed test to ``test -f "filename"''. Platforms tested: Arabica --- 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 5f3c6a2..fbb7717 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 "hdf5.$(F9XMODEXT)" || test -e "HDF5.$(F9XMODEXT)"; then \ + if test -f "hdf5.$(F9XMODEXT)" || test -f "HDF5.$(F9XMODEXT)"; then \ ((cp *.$(F9XMODEXT) $(libdir)/. && chmod 644 $(libdir)/*.$(F9XMODEXT)) || exit 1); \ fi; \ fi -- cgit v0.12