From owner-svn-src-head@FreeBSD.ORG Fri Sep 13 03:39:20 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0F84BFF8; Fri, 13 Sep 2013 03:39:20 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F0E7822EC; Fri, 13 Sep 2013 03:39:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8D3dJVx048603; Fri, 13 Sep 2013 03:39:19 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8D3dJ8Y048602; Fri, 13 Sep 2013 03:39:19 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201309130339.r8D3dJ8Y048602@svn.freebsd.org> From: Glen Barber Date: Fri, 13 Sep 2013 03:39:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255505 - head/share/man/man5 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Sep 2013 03:39:20 -0000 Author: gjb Date: Fri Sep 13 03:39:19 2013 New Revision: 255505 URL: http://svnweb.freebsd.org/changeset/base/255505 Log: Do not install freebsd-update.conf.5 manual if WITHOUT_FREEBSD_UPDATE is set. MFC after: 3 days Approved by: re (delphij) Sponsored by: The FreeBSD Foundation Modified: head/share/man/man5/Makefile Modified: head/share/man/man5/Makefile ============================================================================== --- head/share/man/man5/Makefile Fri Sep 13 02:28:44 2013 (r255504) +++ head/share/man/man5/Makefile Fri Sep 13 03:39:19 2013 (r255505) @@ -26,7 +26,6 @@ MAN= acct.5 \ fbtab.5 \ fdescfs.5 \ forward.5 \ - freebsd-update.conf.5 \ fs.5 \ fstab.5 \ group.5 \ @@ -87,6 +86,10 @@ ATF= ${.CURDIR}/../../../contrib/atf _atf_formats.5= atf-formats.5 .endif +.if ${MK_FREEBSD_UPDATE} != "no" +MAN+= freebsd-update.conf.5 +.endif + .if ${MK_HESIOD} != "no" MAN+= hesiod.conf.5 .endif