[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
This commit is contained in:
Albert Cheng 2002-02-28 10:51:00 -05:00
parent 1e8161af38
commit 2b8c251be6

View File

@ -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