Fix typo.

Reviewed by:	asami
Submitted by:	Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
This commit is contained in:
Motoyuki Konno 1998-10-05 15:10:42 +00:00
parent 0f2972d8c9
commit 2af0f043a4
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=3570

View file

@ -1,4 +1,4 @@
<!-- $Id: porting.sgml,v 1.110 1998-09-17 01:52:04 asami Exp $ --> <!-- $Id: porting.sgml,v 1.111 1998-10-05 15:10:42 motoyuki Exp $ -->
<!-- The FreeBSD Documentation Project --> <!-- The FreeBSD Documentation Project -->
<sect1><heading>Porting an existing piece of free software<label id="porting"></heading> <sect1><heading>Porting an existing piece of free software<label id="porting"></heading>
@ -941,7 +941,7 @@ FETCH_DEPENDS= ncftp2:${PORTSDIR}/net/ncftp2
<p>The ports tree will build packages in the format the <p>The ports tree will build packages in the format the
machine is in. This means a.out for 2.2 and a.out or machine is in. This means a.out for 2.2 and a.out or
ELF for 3.0 depending on what <tt>`objformat`</tt> ELF for 3.0 depending on what <tt>`objformat`</tt>
returns. Also, once users convert move a.out libraries returns. Also, once users move a.out libraries
to a subdirectory, building a.out libraries will be to a subdirectory, building a.out libraries will be
unsupported. (I.e., it may still work if you know what unsupported. (I.e., it may still work if you know what
you are doing, but you are on your own.) you are doing, but you are on your own.)
@ -1005,7 +1005,7 @@ PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout
<p>All port Makefiles are edited to remove minor numbers <p>All port Makefiles are edited to remove minor numbers
from <tt/LIB_DEPENDS/, and also to have the regexp from <tt/LIB_DEPENDS/, and also to have the regexp
support removed. (E.g., support removed. (E.g.,
`<tt>foo\\.1\\.\\(33|40\\)</tt>' -&gt; `<tt>foo.2</tt>'. `<tt>foo\\.1\\.\\(33|40\\)</tt>' -&gt; `<tt>foo.2</tt>'.)
They will be matched using `<tt>grep -wF</tt>'. They will be matched using `<tt>grep -wF</tt>'.
<sect3> <sect3>