diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-05 21:13:31 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-05 21:13:31 (GMT) |
commit | 1aa1ed9b94e8a6dcc4045f17b15948e574a1fb93 (patch) | |
tree | 37b4e0080eff483335bd67306765f99efb52b7fd /fortran/configure | |
parent | c12f91908be82a3864fbbe23ff48a8a8abe629d4 (diff) | |
download | hdf5-1aa1ed9b94e8a6dcc4045f17b15948e574a1fb93.zip hdf5-1aa1ed9b94e8a6dcc4045f17b15948e574a1fb93.tar.gz hdf5-1aa1ed9b94e8a6dcc4045f17b15948e574a1fb93.tar.bz2 |
[svn-r6796] Purpose:
Fix
Description:
Fortran's configure was trying to read the "README.txt" file from the
"$srcdir", where it won't be.
Solution:
Changed it to look in "$srcdir/.." for the "README.txt" file.
Platforms tested:
Verbena. Configure only, so no need for full tests.
Misc. update:
Diffstat (limited to 'fortran/configure')
-rwxr-xr-x | fortran/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/configure b/fortran/configure index b89894e..5e294da 100755 --- a/fortran/configure +++ b/fortran/configure @@ -9640,7 +9640,7 @@ fi rm -f conftest core core.* *.core conftest.o conftest.c dummy.o $ac_clean_files -H5_VERSION="`cut -d' ' -f3 $srcdir/README.txt | head -1`" +H5_VERSION="`cut -d' ' -f3 $srcdir/../README.txt | head -1`" CONFIG_DATE="`date`" |