From nobody@FreeBSD.org  Mon Feb  4 20:38:08 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 50257FB1
	for <freebsd-gnats-submit@FreeBSD.org>; Mon,  4 Feb 2013 20:38:08 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 3CCE7C48
	for <freebsd-gnats-submit@FreeBSD.org>; Mon,  4 Feb 2013 20:38:08 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r14Kc8Hx029684
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 4 Feb 2013 20:38:08 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id r14Kc8U2029683;
	Mon, 4 Feb 2013 20:38:08 GMT
	(envelope-from nobody)
Message-Id: <201302042038.r14Kc8U2029683@red.freebsd.org>
Date: Mon, 4 Feb 2013 20:38:08 GMT
From: Dominique Goncalves <dominique.goncalves@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: WITH_BSDCONFIG=YES creates files in /usr/src
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         175844
>Category:       conf
>Synopsis:       [patch] WITH_BSDCONFIG=YES creates files in /usr/src
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    dteske
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 04 20:40:00 UTC 2013
>Closed-Date:    Fri Feb 08 14:22:38 UTC 2013
>Last-Modified:  Fri Feb 08 14:22:38 UTC 2013
>Originator:     Dominique Goncalves
>Release:        FreeBSD 10.0-CURRENT
>Organization:
>Environment:
>Description:
If WITH_BSDCONFIG=YES is enabled in /etc/src.conf when doing a buildworld, these files are generated in /src/src :

usr.sbin/bsdconfig/bsdconfig.8.gz
usr.sbin/sysrc/sysrc.8.gz


>How-To-Repeat:

>Fix:
--- bsdconfig/Makefile.orig     2013-02-04 21:35:22.000000000 +0100
+++ bsdconfig/Makefile  2013-02-04 21:35:28.000000000 +0100
@@ -1,7 +1,5 @@
 # $FreeBSD: head/usr.sbin/bsdconfig/Makefile 240684 2012-09-18 22:28:42Z dteske $
 
-NO_OBJ=
-
 SUBDIR=        console \
        diskmgmt \
        docsinstall \
--- sysrc/Makefile.orig 2013-02-04 21:34:59.000000000 +0100
+++ sysrc/Makefile      2013-02-04 21:35:06.000000000 +0100
@@ -1,7 +1,5 @@
 # $FreeBSD: head/usr.sbin/sysrc/Makefile 241149 2012-10-03 02:32:47Z dteske $
 
-NO_OBJ=
-
 SCRIPTS= sysrc
 
 MAN= sysrc.8

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->dteske 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Mon Feb 4 21:09:50 UTC 2013 
Responsible-Changed-Why:  
dteske, I think this is yours? 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175844 
State-Changed-From-To: open->analyzed 
State-Changed-By: dteske 
State-Changed-When: Fri Feb 8 11:06:29 UTC 2013 
State-Changed-Why:  
I've analyzed the attached patch.txt and agree with the changes. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175844 
State-Changed-From-To: analyzed->patched 
State-Changed-By: dteske 
State-Changed-When: Fri Feb 8 11:14:31 UTC 2013 
State-Changed-Why:  
Commited to HEAD as r246546 (no MFC; only in HEAD at moment). 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175844 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/175844: commit references a PR
Date: Fri,  8 Feb 2013 11:14:09 +0000 (UTC)

 Author: dteske
 Date: Fri Feb  8 11:14:01 2013
 New Revision: 246546
 URL: http://svnweb.freebsd.org/changeset/base/246546
 
 Log:
   Remove NO_OBJ from Makefiles that generate manuals because this causes the
   GZIP compressed manuals to appear in ./src instead of the appropriate obj dir.
   
   PR:		conf/175844
   Submitted by:	Dominique Goncalves <dominique.goncalves@gmail.com>
 
 Modified:
   head/usr.sbin/bsdconfig/Makefile
   head/usr.sbin/sysrc/Makefile
 
 Modified: head/usr.sbin/bsdconfig/Makefile
 ==============================================================================
 --- head/usr.sbin/bsdconfig/Makefile	Fri Feb  8 11:10:26 2013	(r246545)
 +++ head/usr.sbin/bsdconfig/Makefile	Fri Feb  8 11:14:01 2013	(r246546)
 @@ -1,7 +1,5 @@
  # $FreeBSD$
  
 -NO_OBJ=
 -
  SUBDIR=	console \
  	diskmgmt \
  	docsinstall \
 
 Modified: head/usr.sbin/sysrc/Makefile
 ==============================================================================
 --- head/usr.sbin/sysrc/Makefile	Fri Feb  8 11:10:26 2013	(r246545)
 +++ head/usr.sbin/sysrc/Makefile	Fri Feb  8 11:14:01 2013	(r246546)
 @@ -1,7 +1,5 @@
  # $FreeBSD$
  
 -NO_OBJ=
 -
  SCRIPTS= sysrc
  
  MAN= sysrc.8
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: "Teske, Devin" <Devin.Teske@fisglobal.com>
To: "bug-followup@FreeBSD.org" <bug-followup@FreeBSD.org>
Cc: "dominique.goncalves@gmail.com" <dominique.goncalves@gmail.com>,
        "Teske,
 Devin" <Devin.Teske@fisglobal.com>
Subject: Re: conf/175844: [patch] WITH_BSDCONFIG=YES creates files in
 /usr/src
Date: Fri, 8 Feb 2013 11:44:29 +0000

 --_000_13CA24D6AB415D428143D44749F57D7201EA62EEltcfiswmsgmb21_
 Content-Transfer-Encoding: quoted-printable
 Content-Type: text/plain; charset="iso-8859-1"
 
 Patched as r246546. Can you sync your HEAD tree and retry? Patch.txt commit=
 ted without change.
 --
 Devin
 
 _____________
 The information contained in this message is proprietary and/or confidentia=
 l. If you are not the intended recipient, please: (i) delete the message an=
 d all copies; (ii) do not disclose, distribute or use the message in any ma=
 nner; and (iii) notify the sender immediately. In addition, please be aware=
  that any message addressed to our domain is subject to archiving and revie=
 w by persons other than the intended recipient. Thank you.
 
 --_000_13CA24D6AB415D428143D44749F57D7201EA62EEltcfiswmsgmb21_
 Content-Transfer-Encoding: quoted-printable
 Content-Type: text/html; charset="iso-8859-1"
 
 <html dir=3D"ltr">
 <head>
 <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859-=
 1">
 <style type=3D"text/css" id=3D"owaParaStyle"></style>
 </head>
 <body fpstyle=3D"1" ocsi=3D"0">
 <div style=3D"direction: ltr;font-family: Tahoma;color: #000000;font-size: =
 10pt;">Patched as r<span style=3D"font-family: 'Segoe UI', Helvetica, Arial=
 , sans-serif; ">246546. Can you sync your HEAD tree and retry? Patch.txt co=
 mmitted without change.</span>
 <div><span style=3D"font-family: 'Segoe UI', Helvetica, Arial, sans-serif; =
 ">--&nbsp;</span></div>
 <div><span style=3D"font-family: 'Segoe UI', Helvetica, Arial, sans-serif; =
 ">Devin</span></div>
 </div>
 
 <DIV>
 _____________<BR>
 The information contained in this message is proprietary and/or confidentia=
 l. If you are not the intended recipient, please: (i) delete the message an=
 d all copies; (ii) do not disclose, distribute or use the message in any ma=
 nner; and (iii) notify the sender immediately. In addition, please be aware=
  that any message addressed to our domain is subject to archiving and revie=
 w by persons other than the intended recipient. Thank you.<BR>
 </DIV></body>
 </html>
 
 --_000_13CA24D6AB415D428143D44749F57D7201EA62EEltcfiswmsgmb21_--

From: Dominique Goncalves <dominique.goncalves@gmail.com>
To: "Teske, Devin" <Devin.Teske@fisglobal.com>
Cc: "bug-followup@FreeBSD.org" <bug-followup@freebsd.org>
Subject: Re: conf/175844: [patch] WITH_BSDCONFIG=YES creates files in /usr/src
Date: Fri, 8 Feb 2013 13:24:58 +0100

 Yes it works, thanks.
 
 2013/2/8 Teske, Devin <Devin.Teske@fisglobal.com>:
 > Patched as r246546. Can you sync your HEAD tree and retry? Patch.txt
 > committed without change.
 > --
 > Devin
 > _____________
 > The information contained in this message is proprietary and/or
 > confidential. If you are not the intended recipient, please: (i) delete the
 > message and all copies; (ii) do not disclose, distribute or use the message
 > in any manner; and (iii) notify the sender immediately. In addition, please
 > be aware that any message addressed to our domain is subject to archiving
 > and review by persons other than the intended recipient. Thank you.
State-Changed-From-To: patched->closed 
State-Changed-By: dteske 
State-Changed-When: Fri Feb 8 14:22:12 UTC 2013 
State-Changed-Why:  
Confirmed fixed by OP. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175844 
>Unformatted:
