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 | |
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')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1688,7 +1688,7 @@ exec 5>>./config.log case "$INSTALL" in - ..*install-sh) + *install-sh*) INSTALL='\${top_srcdir}'/bin/install-sh ;; esac |