diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-06-15 04:01:09 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-06-15 04:01:09 (GMT) |
commit | 740b5058c594e612a9b68864417a0afd9249b441 (patch) | |
tree | a102d2fde225ab281a4d18a09d72db1d9c32368c /bin/snapshot | |
parent | 73dfd4d282a084a3e6ed2e9e69e54ca6c8e29ad4 (diff) | |
download | hdf5-740b5058c594e612a9b68864417a0afd9249b441.zip hdf5-740b5058c594e612a9b68864417a0afd9249b441.tar.gz hdf5-740b5058c594e612a9b68864417a0afd9249b441.tar.bz2 |
[svn-r1345] Changed it to use perl to execute the perl scripts than to
rely on invoking the script files themselves.
Tested on fuga (IRIX 6.5).
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-x | bin/snapshot | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/bin/snapshot b/bin/snapshot index 9a40f6f..105f9d2 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -23,10 +23,8 @@ fi # What compression methods to use? METHODS="gzip bzip2" -# How to configure? We disable hdf4 because that's almost always the -# culprit for tests failing -- hawkwind seems to have a version older -# than what h5toh4 requires. -CONFIGURE="./configure" +# At NCSA, the standard place to find HDF4 software is in /usr/ncsa/. +CONFIGURE="./configure --with-hdf4=/usr/ncsa/include,/usr/ncsa/lib" # Create a working directory. Hopefully one is left over from last # time that still has the contents of the previous release. But if @@ -72,9 +70,9 @@ fi if [ "$snapshot" = "yes" ]; then ( cd ${COMPARE}/current - cvs -Q tag hdf5-`./bin/h5vers |tr . _` - ./bin/release -d $ARCHIVES $METHODS - ./bin/h5vers -i + cvs -Q tag hdf5-`perl -w bin/h5vers |tr . _` + bin/release -d $ARCHIVES $METHODS + perl -w bin/h5vers -i cvs -Q commit -m Snapshot ) fi |