[svn-r12129] Purpose:

Bug fix

Description:
The snapshot script was trying to install-doc, even though the docs are
no longer included in the cvs repo.

Solution:
Replaced 'make install install-doc' with 'make install-all', which should
have the same effect (installing the library and examples).

Platforms tested:
very minor change
This commit is contained in:
James Laird 2006-03-22 13:35:23 -05:00
parent 3424f9f5d1
commit ff67dcf8ba

View File

@ -393,11 +393,11 @@ if [ "$cmd" = "all" -o -n "$cmdtest" -o -n "$cmddiff" ]; then
TIMESTAMP "check" && \
${MAKE} check && \
TIMESTAMP "install" && \
${MAKE} install install-doc && \
${MAKE} install-all && \
TIMESTAMP "check-install" && \
${MAKE} check-install && \
TIMESTAMP "uninstall" && \
${MAKE} uninstall uninstall-doc); then
${MAKE} uninstall-all); then
:
else
errcode=$?