Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jan 1999 22:03:00 +1100 (EST)
From:      jim@phrantic.phear.net
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   docs/9837: fix to doc/handbook/porting.sgml
Message-ID:  <199901311103.WAA01367@corp.au.triax.com>

next in thread | raw e-mail | index | archive | help

>Number:         9837
>Category:       docs
>Synopsis:       fix to doc/handbook/porting.sgml
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-doc
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jan 31 03:10:02 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Jim Mock
>Release:        FreeBSD 2.2.8-RELEASE i386
>Organization:
>Environment:

	

>Description:

There's an error in doc/handbook/porting.sgml.  It currently reads..

	<p>The recommended ordering of tests is:
	<enum>
	  <item><tt>make install</tt>
	  <item><tt>make package</tt>
	  <item><tt>make deinstall</tt>
	  <item><tt>pkg_add `make package-name`</tt>
	  <item><tt>make deinstall</tt>
	  <item><tt>make reinstall</tt>
	  <item><tt>make package</tt>
	</enum>

And should be..

	<p>The recommended ordering of tests is:
	<enum>
	  <item><tt>make install</tt>
	  <item><tt>make package</tt>
	  <item><tt>make deinstall</tt>
	  <item><tt>pkg_add package-name</tt>
	  <item><tt>make deinstall</tt>
	  <item><tt>make reinstall</tt>
	  <item><tt>make package</tt>
	</enum>


>How-To-Repeat:

more porting.sgml or read
http://www.freebsd.org/handbook/handbook37.html#46
	
>Fix:
	
Apply the following patch..

*** porting.sgml.orig	Sat Jan 30 10:43:57 1999
--- porting.sgml	Sun Jan 31 21:51:29 1999
***************
*** 182,188 ****
  	  <item><tt>make install</tt>
  	  <item><tt>make package</tt>
  	  <item><tt>make deinstall</tt>
! 	  <item><tt>pkg_add `make package-name`</tt>
  	  <item><tt>make deinstall</tt>
  	  <item><tt>make reinstall</tt>
  	  <item><tt>make package</tt>
--- 182,188 ----
  	  <item><tt>make install</tt>
  	  <item><tt>make package</tt>
  	  <item><tt>make deinstall</tt>
! 	  <item><tt>pkg_add package-name</tt>
  	  <item><tt>make deinstall</tt>
  	  <item><tt>make reinstall</tt>
  	  <item><tt>make package</tt>
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199901311103.WAA01367>