diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-07-20 13:36:33 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-07-20 13:36:33 (GMT) |
commit | 7a2590222e14ff6877ee395cb53dffaa844ecb36 (patch) | |
tree | 34f55df56a38452a31873840b7c1fc8f5b24e705 | |
parent | 37e0b58f862cc34cc1fff2288b9bc594d88a1b31 (diff) | |
download | hdf5-7a2590222e14ff6877ee395cb53dffaa844ecb36.zip hdf5-7a2590222e14ff6877ee395cb53dffaa844ecb36.tar.gz hdf5-7a2590222e14ff6877ee395cb53dffaa844ecb36.tar.bz2 |
[svn-r11089] Purpose:
cleanup.
Description:
The install directory (--prefix) has been changed to $PWD/hdf5 long time
ago. It is no need to reset to installdir any more.
Platforms tested:
Change is trivial and will be tested in Daily tests.
Misc. update:
-rwxr-xr-x | bin/snapshot | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/snapshot b/bin/snapshot index 07af0b7..5cea08d 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -342,8 +342,6 @@ if [ "$cmd" = "all" -o -n "$cmdtest" -o -n "$cmddiff" ]; then TESTDIR=${BASEDIR}/TestDir/${SRCDIRNAME} test -d ${TESTDIR} || mkdir ${TESTDIR} fi - INSTALLDIR=${TESTDIR}/installdir - test -d $INSTALLDIR || mkdir $INSTALLDIR # Make sure current version exists and is clean if [ -d ${TESTDIR} ]; then (cd ${TESTDIR} && ${MAKE} distclean) @@ -386,7 +384,7 @@ if [ "$cmd" = "all" -o -n "$cmdtest" -o -n "$cmddiff" ]; then if [ "$snapshot" = "yes" ]; then if (cd ${TESTDIR} && \ TIMESTAMP "configure" && \ - ${srcdir:+${CURRENT}/}${CONFIGURE} --prefix=$INSTALLDIR && \ + ${srcdir:+${CURRENT}/}${CONFIGURE} && \ TIMESTAMP "make" && \ ${MAKE} && \ TIMESTAMP "check" && \ |