summaryrefslogtreecommitdiffstats
path: root/bin/snapshot
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-02-28 15:51:00 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-02-28 15:51:00 (GMT)
commit2b8c251be68edf279e4e32fe14070561e715fbc1 (patch)
tree33cca660b12ce33480af3f26c7c6877eba20f8bb /bin/snapshot
parent1e8161af387cf2e5cb5d97f8dfe32ba15d1c8410 (diff)
downloadhdf5-2b8c251be68edf279e4e32fe14070561e715fbc1.zip
hdf5-2b8c251be68edf279e4e32fe14070561e715fbc1.tar.gz
hdf5-2b8c251be68edf279e4e32fe14070561e715fbc1.tar.bz2
[svn-r5026] 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
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-xbin/snapshot3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot
index a4f62fa..c987682 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