Wed Sep 19 23:06:22 2012 UTC ()
Fix inverted logic description for MKSTRIPIDENT.
Noted by Snader_LB on freenode IRC


(abs)
diff -r1.89 -r1.90 src/doc/BUILDING.mdoc
diff -r1.61 -r1.62 src/share/man/man5/mk.conf.5

cvs diff -r1.89 -r1.90 src/doc/BUILDING.mdoc (expand / switch to unified diff)

--- src/doc/BUILDING.mdoc 2012/05/25 10:47:25 1.89
+++ src/doc/BUILDING.mdoc 2012/09/19 23:06:22 1.90
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1.\" $NetBSD: BUILDING.mdoc,v 1.89 2012/05/25 10:47:25 wiz Exp $ 1.\" $NetBSD: BUILDING.mdoc,v 1.90 2012/09/19 23:06:22 abs Exp $
2.\" 2.\"
3.\" Copyright (c) 2001-2011 The NetBSD Foundation, Inc. 3.\" Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
4.\" All rights reserved. 4.\" All rights reserved.
5.\" 5.\"
6.\" This code is derived from software contributed to The NetBSD Foundation 6.\" This code is derived from software contributed to The NetBSD Foundation
7.\" by Todd Vierling and Luke Mewburn. 7.\" by Todd Vierling and Luke Mewburn.
8.\" 8.\"
9.\" Redistribution and use in source and binary forms, with or without 9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions 10.\" modification, are permitted provided that the following conditions
11.\" are met: 11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright 12.\" 1. Redistributions of source code must retain the above copyright
13.\" notice, this list of conditions and the following disclaimer. 13.\" notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright 14.\" 2. Redistributions in binary form must reproduce the above copyright
@@ -23,27 +23,27 @@ @@ -23,27 +23,27 @@
23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28.\" POSSIBILITY OF SUCH DAMAGE. 28.\" POSSIBILITY OF SUCH DAMAGE.
29.\" 29.\"
30.\" NOTE: After changing this file, run "make regen" in the src/doc 30.\" NOTE: After changing this file, run "make regen" in the src/doc
31.\" directory, and check in both src/BUILDING and src/doc/BUILDING.mdoc. 31.\" directory, and check in both src/BUILDING and src/doc/BUILDING.mdoc.
32.\" 32.\"
33.\" Toolchain prefix for commands 33.\" Toolchain prefix for commands
34.ds toolprefix nb 34.ds toolprefix nb
35. 35.
36.Dd May 25, 2012 36.Dd September 19, 2012
37.Dt BUILDING 8 37.Dt BUILDING 8
38.Os NetBSD 38.Os NetBSD
39. 39.
40.Sh NAME 40.Sh NAME
41. 41.
42.Nm BUILDING 42.Nm BUILDING
43.Nd Procedure for building 43.Nd Procedure for building
44.Nx 44.Nx
45from source code. 45from source code.
46. 46.
47.Sh REQUIREMENTS 47.Sh REQUIREMENTS
48. 48.
49.Nx 49.Nx
@@ -570,29 +570,29 @@ will be built and installed during a bui @@ -570,29 +570,29 @@ will be built and installed during a bui
570If set to 570If set to
571.Dq no , 571.Dq no ,
572then all of 572then all of
573.Sy MKCATPAGES , MKDOC , MKINFO , MKMAN , 573.Sy MKCATPAGES , MKDOC , MKINFO , MKMAN ,
574and 574and
575.Sy MKNLS 575.Sy MKNLS
576will be set to 576will be set to
577.Dq no 577.Dq no
578unconditionally. 578unconditionally.
579.DFLTy 579.DFLTy
580. 580.
581.It Sy MKSTRIPIDENT 581.It Sy MKSTRIPIDENT
582.YorN 582.YorN
583Indicates whether program binaries and shared libraries should be built 583Indicates whether RCS IDs, for use with
584to include RCS IDs for use with 584.Xr ident 1 ,
585.Xr ident 1 . 585should be stripped from program binaries and shared libraries.
586.DFLTn 586.DFLTn
587. 587.
588.It Sy MKUNPRIVED 588.It Sy MKUNPRIVED
589.YorN 589.YorN
590Indicates whether an unprivileged install will occur. 590Indicates whether an unprivileged install will occur.
591The user, group, permissions, and file flags, will not be set on 591The user, group, permissions, and file flags, will not be set on
592the installed items; instead the information will be appended to 592the installed items; instead the information will be appended to
593a file called 593a file called
594.Pa METALOG 594.Pa METALOG
595in 595in
596.Sy DESTDIR . 596.Sy DESTDIR .
597The contents of 597The contents of
598.Pa METALOG 598.Pa METALOG

cvs diff -r1.61 -r1.62 src/share/man/man5/mk.conf.5 (expand / switch to unified diff)

--- src/share/man/man5/mk.conf.5 2012/07/14 17:12:27 1.61
+++ src/share/man/man5/mk.conf.5 2012/09/19 23:06:22 1.62
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1.\" $NetBSD: mk.conf.5,v 1.61 2012/07/14 17:12:27 wiz Exp $ 1.\" $NetBSD: mk.conf.5,v 1.62 2012/09/19 23:06:22 abs Exp $
2.\" 2.\"
3.\" Copyright (c) 1999-2003 The NetBSD Foundation, Inc. 3.\" Copyright (c) 1999-2003 The NetBSD Foundation, Inc.
4.\" All rights reserved. 4.\" All rights reserved.
5.\" 5.\"
6.\" This code is derived from software contributed to The NetBSD Foundation 6.\" This code is derived from software contributed to The NetBSD Foundation
7.\" by Luke Mewburn. 7.\" by Luke Mewburn.
8.\" 8.\"
9.\" Redistribution and use in source and binary forms, with or without 9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions 10.\" modification, are permitted provided that the following conditions
11.\" are met: 11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright 12.\" 1. Redistributions of source code must retain the above copyright
13.\" notice, this list of conditions and the following disclaimer. 13.\" notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright 14.\" 2. Redistributions in binary form must reproduce the above copyright
@@ -17,27 +17,27 @@ @@ -17,27 +17,27 @@
17.\" 17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 21.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28.\" POSSIBILITY OF SUCH DAMAGE. 28.\" POSSIBILITY OF SUCH DAMAGE.
29.\" 29.\"
30.Dd July 14, 2012 30.Dd September 19, 2012
31.Dt MK.CONF 5 31.Dt MK.CONF 5
32.Os 32.Os
33.\" turn off hyphenation 33.\" turn off hyphenation
34.hym 999 34.hym 999
35. 35.
36.Sh NAME 36.Sh NAME
37.Nm mk.conf 37.Nm mk.conf
38.Nd make configuration file 38.Nd make configuration file
39. 39.
40.Sh DESCRIPTION 40.Sh DESCRIPTION
41The 41The
42.Nm 42.Nm
43file overrides various parameters used during the build of the system. 43file overrides various parameters used during the build of the system.
@@ -631,29 +631,29 @@ Indicates whether the compiler generates @@ -631,29 +631,29 @@ Indicates whether the compiler generates
631library calls for floating point and possibly soft-float library 631library calls for floating point and possibly soft-float library
632support. 632support.
633.DFLTn 633.DFLTn
634. 634.
635.It Sy MKSTATICLIB 635.It Sy MKSTATICLIB
636.YorN 636.YorN
637Indicates whether the normal static libraries 637Indicates whether the normal static libraries
638.Sy ( lib*_g.a ) 638.Sy ( lib*_g.a )
639will be built and installed. 639will be built and installed.
640.DFLTy 640.DFLTy
641. 641.
642.It Sy MKSTRIPIDENT 642.It Sy MKSTRIPIDENT
643.YorN 643.YorN
644Indicates whether program binaries and shared libraries should be built 644Indicates whether RCS IDs, for use with
645to include RCS IDs for use with 645.Xr ident 1 ,
646.Xr ident 1 . 646should be stripped from program binaries and shared libraries.
647.DFLTn 647.DFLTn
648. 648.
649.It Sy MKUNPRIVED 649.It Sy MKUNPRIVED
650.YorN 650.YorN
651Indicates whether an unprivileged install will occur. 651Indicates whether an unprivileged install will occur.
652The user, group, permissions, and file flags, will not be set on 652The user, group, permissions, and file flags, will not be set on
653the installed item; instead the information will be appended to 653the installed item; instead the information will be appended to
654a file called 654a file called
655.Pa METALOG 655.Pa METALOG
656in 656in
657.Sy DESTDIR . 657.Sy DESTDIR .
658The contents of 658The contents of
659.Pa METALOG 659.Pa METALOG