diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-02-28 15:51:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-02-28 15:51:05 (GMT) |
commit | 10fb6c96662ae3202cfca212a7eb23992c74e42c (patch) | |
tree | 2ea1d7720996f7fe50f90e3599ba2c05886e4458 | |
parent | 7461707c6073ea4b2265583f93724ffe374ebb0e (diff) | |
download | hdf5-10fb6c96662ae3202cfca212a7eb23992c74e42c.zip hdf5-10fb6c96662ae3202cfca212a7eb23992c74e42c.tar.gz hdf5-10fb6c96662ae3202cfca212a7eb23992c74e42c.tar.bz2 |
[svn-r5027] Purpose:
Bug fix
Description:
check-install was on the same make line with install. They
got run in parallel.
Run check-install as a separate make action after make install is completed.
Platforms tested:
Eirene
-rwxr-xr-x | bin/snapshot | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot index 70c609e..d85eb94 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -272,7 +272,8 @@ if [ "$cmd" = "all" -o -n "$cmdtest" ]; then ${srcdir:+${CURRENT}/}${CONFIGURE} --prefix=$INSTALLDIR && \ ${MAKE} && \ ${MAKE} check && \ - ${MAKE} install install-doc check-install && \ + ${MAKE} install install-doc && \ + ${MAKE} check-install && \ ${MAKE} uninstall uninstall-doc); then : else |