From owner-freebsd-doc@FreeBSD.ORG Thu Jan 24 07:37:35 2008 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8020E16A46B; Thu, 24 Jan 2008 07:37:35 +0000 (UTC) (envelope-from mdmay74@internode.on.net) Received: from ipmail04.adl2.internode.on.net (ipmail04.adl2.internode.on.net [203.16.214.57]) by mx1.freebsd.org (Postfix) with ESMTP id CD62513C459; Thu, 24 Jan 2008 07:37:34 +0000 (UTC) (envelope-from mdmay74@internode.on.net) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAKjLl0d5LREL/2dsb2JhbAAIrlY X-IronPort-AV: E=Sophos;i="4.25,242,1199626200"; d="scan'208";a="38952996" Received: from ppp121-45-17-11.lns10.adl2.internode.on.net (HELO [192.168.0.2]) ([121.45.17.11]) by ipmail04.adl2.internode.on.net with ESMTP; 24 Jan 2008 17:52:12 +1030 Message-ID: <47983CAF.8010509@internode.on.net> Date: Thu, 24 Jan 2008 17:52:23 +1030 From: Matthew May User-Agent: Thunderbird 1.5 (X11/20061113) MIME-Version: 1.0 To: Tom Rhodes References: <200801240150.m0O1o2CW086551@freefall.freebsd.org> In-Reply-To: <200801240150.m0O1o2CW086551@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/118261: [patch] Base NTP: NO_NTP support + NO_SHAREDOCS applies to NTP's HTMLs X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jan 2008 07:37:35 -0000 Tom Rhodes wrote: ... > wraps the share docs into NO_SHAREDOCS. The only issues I > think the only other changes to this patch would probably be > to not enter the docs directory at all if both NO_SHAREDOCS > and NO_MAN are set. This could be done with a different change > to the Makefile if: > > .if !defined(NO_SHAREDOCS) && !defined(NO_MAN) > subdir+= doc > .endif I may be wrong, but wouldn't that be: .if !defined(NO_SHAREDOCS) || !defined(NO_MAN) ? :-) Cheers, MAtt.