diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-01-10 17:41:27 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-01-10 17:41:27 (GMT) |
commit | 6188c31c19f1e550cb0c578eaced594493a49af3 (patch) | |
tree | a81ebc72f1cc779a0d359e49d565e39f0e3df12e /fortran/config | |
parent | 6e14a21d7c20d5c802db95a844429f76d830ed20 (diff) | |
download | hdf5-6188c31c19f1e550cb0c578eaced594493a49af3.zip hdf5-6188c31c19f1e550cb0c578eaced594493a49af3.tar.gz hdf5-6188c31c19f1e550cb0c578eaced594493a49af3.tar.bz2 |
[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
Diffstat (limited to 'fortran/config')
-rw-r--r-- | fortran/config/conclude.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |