svn commit: r341343 - head/share/man/man7

Edward Tomasz Napierala trasz at FreeBSD.org
Fri Nov 30 15:56:16 UTC 2018


Author: trasz
Date: Fri Nov 30 15:56:14 2018
New Revision: 341343
URL: https://svnweb.freebsd.org/changeset/base/341343

Log:
  Add an example of rebuilding a single piece of userspace.
  
  MFC after:	2 weeks
  Sponsored by:	DARPA, AFRL

Modified:
  head/share/man/man7/development.7

Modified: head/share/man/man7/development.7
==============================================================================
--- head/share/man/man7/development.7	Fri Nov 30 15:52:03 2018	(r341342)
+++ head/share/man/man7/development.7	Fri Nov 30 15:56:14 2018	(r341343)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 16, 2018
+.Dd November 30, 2018
 .Dt DEVELOPMENT 7
 .Os
 .Sh NAME
@@ -118,6 +118,14 @@ After reboot:
 cd src
 make -j8 installworld
 reboot
+.Ed
+.Pp
+Rebuild and reinstall a single piece of userspace, in this
+case
+.Xr ls 1 :
+.Bd -literal -offset indent
+cd src/bin/ls
+make clean all install
 .Ed
 .Sh SEE ALSO
 .Xr svnlite 1 ,


More information about the svn-src-all mailing list