diff options
author | ru <ru@FreeBSD.org> | 2004-12-17 10:11:33 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-12-17 10:11:33 +0000 |
commit | dbf467b697d34603b8254b4e78ab9852112870d8 (patch) | |
tree | 4f8761505678ee3bd12d31df99e3964dbe9f630e | |
parent | 150094810799924b86aefe164384cba82aebef3f (diff) | |
download | FreeBSD-src-dbf467b697d34603b8254b4e78ab9852112870d8.zip FreeBSD-src-dbf467b697d34603b8254b4e78ab9852112870d8.tar.gz |
Minor tweaks in "make update" comments.
-rw-r--r-- | Makefile.inc1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 364a7f6..6314448 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -27,7 +27,7 @@ # The intended user-driven targets are: # buildworld - rebuild *everything*, including glue to help do upgrades # 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 # /usr/share/mk. These include: @@ -739,7 +739,7 @@ reinstallkernel reinstallkernel.debug: ${SPECIAL_INSTALLCHECKS} # # 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. # update: @@ -765,7 +765,7 @@ update: .endif .if defined(CVS_UPDATE) @echo "--------------------------------------------------------------" - @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} + @echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS} .endif |