From owner-svn-src-all@FreeBSD.ORG Mon Sep 16 02:01:37 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 83BA06CE; Mon, 16 Sep 2013 02:01:37 +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 6FD692336; Mon, 16 Sep 2013 02:01:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8G21bY3005605; Mon, 16 Sep 2013 02:01:37 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8G21bul005604; Mon, 16 Sep 2013 02:01:37 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201309160201.r8G21bul005604@svn.freebsd.org> From: Glen Barber Date: Mon, 16 Sep 2013 02:01:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r255606 - stable/9/share/man/man5 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Sep 2013 02:01:37 -0000 Author: gjb Date: Mon Sep 16 02:01:36 2013 New Revision: 255606 URL: http://svnweb.freebsd.org/changeset/base/255606 Log: MFC r255505: Do not install freebsd-update.conf.5 manual if WITHOUT_FREEBSD_UPDATE is set. Sponsored by: The FreeBSD Foundation Modified: stable/9/share/man/man5/Makefile Directory Properties: stable/9/share/man/man5/ (props changed) Modified: stable/9/share/man/man5/Makefile ============================================================================== --- stable/9/share/man/man5/Makefile Mon Sep 16 00:06:54 2013 (r255605) +++ stable/9/share/man/man5/Makefile Mon Sep 16 02:01:36 2013 (r255606) @@ -25,7 +25,6 @@ MAN= acct.5 \ fbtab.5 \ fdescfs.5 \ forward.5 \ - freebsd-update.conf.5 \ fs.5 \ fstab.5 \ group.5 \ @@ -80,6 +79,10 @@ MLINKS+=quota.user.5 quota.group.5 MLINKS+=rc.conf.5 rc.conf.local.5 MLINKS+=resolver.5 resolv.conf.5 +.if ${MK_FREEBSD_UPDATE} != "no" +MAN+= freebsd-update.conf.5 +.endif + .if ${MK_HESIOD} != "no" MAN+= hesiod.conf.5 .endif