From 1aa1ed9b94e8a6dcc4045f17b15948e574a1fb93 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 5 May 2003 16:13:31 -0500 Subject: [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: --- fortran/configure | 2 +- fortran/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 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`" diff --git a/fortran/configure.in b/fortran/configure.in index feb3fc1..82d65c7 100644 --- a/fortran/configure.in +++ b/fortran/configure.in @@ -966,7 +966,7 @@ dnl and installed with the libraries. dnl dnl HDF5 version from the first line of the README.txt file. -H5_VERSION="`cut -d' ' -f3 $srcdir/README.txt | head -1`" +H5_VERSION="`cut -d' ' -f3 $srcdir/../README.txt | head -1`" AC_SUBST(H5_VERSION) dnl Configuration date -- cgit v0.12