Minor tweaks in "make update" comments.

This commit is contained in:
Ruslan Ermilov 2004-12-17 10:11:33 +00:00
parent 34676354ec
commit 3a35b5b9a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=138965

View File

@ -27,7 +27,7 @@
# The intended user-driven targets are: # The intended user-driven targets are:
# buildworld - rebuild *everything*, including glue to help do upgrades # buildworld - rebuild *everything*, including glue to help do upgrades
# installworld- install everything built by "buildworld" # installworld- install everything built by "buildworld"
# update - convenient way to update your source tree (eg: sup/cvs) # update - convenient way to update your source tree (eg: cvsup/cvs)
# #
# Standard targets (not defined here) are documented in the makefiles in # Standard targets (not defined here) are documented in the makefiles in
# /usr/share/mk. These include: # /usr/share/mk. These include:
@ -739,7 +739,7 @@ reinstallkernel reinstallkernel.debug: ${SPECIAL_INSTALLCHECKS}
# #
# update # update
# #
# Update the source tree, by running sup and/or running cvs to update to the # Update the source tree, by running cvsup and/or running cvs to update to the
# latest copy. # latest copy.
# #
update: update:
@ -765,7 +765,7 @@ update:
.endif .endif
.if defined(CVS_UPDATE) .if defined(CVS_UPDATE)
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} @echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS} cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS}
.endif .endif