diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-07-20 13:36:41 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-07-20 13:36:41 (GMT) |
commit | c9b45e24d5f1935d5356cf90f0521d1e82efc4e3 (patch) | |
tree | e227bcf6d08d412db0a63562545a0c47bd933558 /bin | |
parent | aaeebfc5e8cfec2d35f744e6f2dbb58c90ed0db3 (diff) | |
download | hdf5-c9b45e24d5f1935d5356cf90f0521d1e82efc4e3.zip hdf5-c9b45e24d5f1935d5356cf90f0521d1e82efc4e3.tar.gz hdf5-c9b45e24d5f1935d5356cf90f0521d1e82efc4e3.tar.bz2 |
[svn-r11090] 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:
Diffstat (limited to 'bin')
-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" && \ |