From owner-svn-src-stable-9@FreeBSD.ORG Mon Oct 1 19:13:47 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD1F6106566C; Mon, 1 Oct 2012 19:13:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C7EFA8FC16; Mon, 1 Oct 2012 19:13:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q91JDlub099457; Mon, 1 Oct 2012 19:13:47 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q91JDlcH099455; Mon, 1 Oct 2012 19:13:47 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201210011913.q91JDlcH099455@svn.freebsd.org> From: John Baldwin Date: Mon, 1 Oct 2012 19:13:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r241111 - stable/9/share/doc/smm X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 19:13:48 -0000 Author: jhb Date: Mon Oct 1 19:13:47 2012 New Revision: 241111 URL: http://svn.freebsd.org/changeset/base/241111 Log: MFC 239739: Don't build and install the 07.lpd doc if WITHOUT_LPR is set. Modified: stable/9/share/doc/smm/Makefile Directory Properties: stable/9/share/doc/smm/ (props changed) Modified: stable/9/share/doc/smm/Makefile ============================================================================== --- stable/9/share/doc/smm/Makefile Mon Oct 1 19:09:25 2012 (r241110) +++ stable/9/share/doc/smm/Makefile Mon Oct 1 19:13:47 2012 (r241111) @@ -18,7 +18,7 @@ SUBDIR= title \ 04.quotas \ 05.fastfs \ 06.nfs \ - 07.lpd \ + ${_07.lpd} \ ${_08.sendmailop} \ 11.timedop \ 12.timed \ @@ -28,4 +28,8 @@ SUBDIR= title \ _08.sendmailop= 08.sendmailop .endif +.if ${MK_LPR} != "no" +_07.lpd= 07.lpd +.endif + .include