summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-04-11 17:19:08 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-04-11 17:19:08 (GMT)
commitfa89e8134c36bb9828ff38b65bb5a46f602108d5 (patch)
tree4e180e2c621c59f798f2101707bf507c04a50f5f /configure.in
parentc1f6b093e2c8e742c6e10d322dad05e58831c25c (diff)
downloadhdf5-fa89e8134c36bb9828ff38b65bb5a46f602108d5.zip
hdf5-fa89e8134c36bb9828ff38b65bb5a46f602108d5.tar.gz
hdf5-fa89e8134c36bb9828ff38b65bb5a46f602108d5.tar.bz2
[svn-r3797] 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 the -c back in with the install-sh script.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6b7a6ad..9b2c43b 100644
--- a/configure.in
+++ b/configure.in
@@ -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