diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-14 22:58:34 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-14 22:58:34 (GMT) |
commit | 740a52b6227583082dab263b672f46ad516e0029 (patch) | |
tree | 43276a65f8b367ea85b5fa22027353e699b318ae /configure.in | |
parent | 376b58d1d7e679330f039a9018eaa2d80545b2d5 (diff) | |
download | hdf5-740a52b6227583082dab263b672f46ad516e0029.zip hdf5-740a52b6227583082dab263b672f46ad516e0029.tar.gz hdf5-740a52b6227583082dab263b672f46ad516e0029.tar.bz2 |
[svn-r3637] Purpose:
Bug Fix
Description:
On the Nersc machines, the install-sh script wasn't being found in
the proper place.
Solution:
Corrected the "fix" I put in there awhile ago. Essentially, if the
INSTALL macro is the program "install-sh" with anything around it,
then we assume they want our install-sh program and force the
Makefiles to find it in the hdf5/bin directory.
Platforms tested:
Nersc.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1864000..8ec2693 100644 --- a/configure.in +++ b/configure.in @@ -238,7 +238,7 @@ AM_PROG_LIBTOOL dnl Fix up the INSTALL macro if it's a relative path. We want the dnl full-path to the binary instead. case "$INSTALL" in - ..*install-sh) + *install-sh*) INSTALL='\${top_srcdir}'/bin/install-sh ;; esac |