Bug 87186

Summary: Handbook recommends outdated make op.
Product: Documentation Reporter: Chad Castleberry <chadcastleberry>
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Chad Castleberry 2005-10-10 05:50:16 UTC
Handbook recommends using NOPROFILE when building world(http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html)  Yet that option has been depreciated in favor of NO_PROFILE.

Fix: 

Simply change "make -DNOPROFILE target" to "make -DNO_PROFILE target" and  "NOPROFILE=    true     #    Avoid compiling profiled libraries" to "NO_PROFILE=    true     #    Avoid compiling profiled libraries"
How-To-Repeat: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Section  20.4.7.2 "Compile the Base System".
Comment 1 Giorgos Keramidas freebsd_committer freebsd_triage 2005-10-10 14:36:44 UTC
On 2005-10-10 04:45, Chad Castleberry <chadcastleberry@gmail.com> wrote:
> Handbook recommends using NOPROFILE when building world
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
> Yet that option has been depreciated in favor of NO_PROFILE.

Good catch.

The Handbook has to support older releases too (i.e. 4.11), that may
not have NO_XXX options.  I think we can change NOPROFILE to
NO_PROFILE and add a <note> for those older releases though.
Comment 2 Pav Lucistnik freebsd_committer freebsd_triage 2005-12-18 02:45:19 UTC
State Changed
From-To: open->closed

I updated all NOFOO instances in that chapter to match what FreeBSD 6.0 is 
using.