diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 14:21:23 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 14:21:23 (GMT) |
commit | 576213d960a7627e3abc6d3bc6c3849721f3ca81 (patch) | |
tree | c48c4b6b752b73ec43a21e6acaaa4718ac32b344 | |
parent | 627c7866a18e1a983264a97ec87c1d20a54fe230 (diff) | |
download | hdf5-576213d960a7627e3abc6d3bc6c3849721f3ca81.zip hdf5-576213d960a7627e3abc6d3bc6c3849721f3ca81.tar.gz hdf5-576213d960a7627e3abc6d3bc6c3849721f3ca81.tar.bz2 |
[svn-r3777] Purpose:
Bug Fix
Description:
Forgot to propagate the '-c' flag if the install-sh script is being
used. This caused some machines *cough*T3E*cough* to move instead of
copy the files...
Solution:
Added -c flag back in with the install-sh script.
Platforms tested:
Gondolin
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1689,7 +1689,7 @@ exec 5>>./config.log case "$INSTALL" in *install-sh*) - INSTALL='\${top_srcdir}'/bin/install-sh + INSTALL='\${top_srcdir}/bin/install-sh -c' ;; esac diff --git a/configure.in b/configure.in index 5f063ea..2c3e75b 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce configure. dnl -dnl Copyright (C) 1997 National Center for Supercomputing Applications. -dnl All rights reserved. +dnl Copyright (C) 1997-2001 National Center for Supercomputing Applications +dnl All rights reserved. dnl ---------------------------------------------------------------------- dnl Initialize configure. @@ -239,7 +239,7 @@ 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='\${top_srcdir}'/bin/install-sh + INSTALL='\${top_srcdir}/bin/install-sh -c' ;; esac |