summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-02-13 19:42:06 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-02-13 19:42:06 (GMT)
commita66186cc0dd49a1800c56688e5347fc39abb8c3a (patch)
treec09cb44123b6c7aa120408266750be7c93cfbf04 /configure
parent21e3bc433cdde3020e8554fa2156d1acfdc0f3c7 (diff)
downloadhdf5-a66186cc0dd49a1800c56688e5347fc39abb8c3a.zip
hdf5-a66186cc0dd49a1800c56688e5347fc39abb8c3a.tar.gz
hdf5-a66186cc0dd49a1800c56688e5347fc39abb8c3a.tar.bz2
[svn-r3406] Purpose:
Fixlet Description: FIxed the hack for the INSTALL macro. It was checking the "whole" path to the install-sh script instead of if it was just a relative path with install-sh at the end. Solution: Changed the test to match any relative path with install-sh at the end. This assumes that the install-sh is the one we supply to them (an assumption it was making before, really). Platforms tested: Gondolin, Linux
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index cbfe143..0ac15db 100755
--- a/configure
+++ b/configure
@@ -1688,7 +1688,7 @@ exec 5>>./config.log
case "$INSTALL" in
- ../bin/install-sh)
+ ..*install-sh)
INSTALL='\${top_srcdir}'/bin/install-sh
;;
esac