From owner-svn-ports-all@FreeBSD.ORG Mon Oct 28 04:54:06 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 95E4DC44; Mon, 28 Oct 2013 04:54:06 +0000 (UTC) Date: Mon, 28 Oct 2013 04:54:06 +0000 From: Alexey Dokuchaev To: Renato Botelho Subject: Re: svn commit: r331439 - head/security/checkpassword Message-ID: <20131028045406.GA30390@FreeBSD.org> References: <201310232232.r9NMWeoP077908@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201310232232.r9NMWeoP077908@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 04:54:06 -0000 On Wed, Oct 23, 2013 at 10:32:40PM +0000, Renato Botelho wrote: > New Revision: 331439 > URL: http://svnweb.freebsd.org/changeset/ports/331439 > > [...] > -NO_STAGE= yes > .include > [...] > .if ${PORT_OPTIONS:MDOCS} > - ${MKDIR} ${DOCSDIR} > + ${MKDIR} ${STAGEDIR}${DOCSDIR} > .for f in ${PORTDOCS} > - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} > + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} Since this port is not actually doing something nasty to build those docs, you could have simply remove .if ${PORT_OPTIONS:MDOCS} check. This would make the Makefile cleaner, and you and even drop .include (but don't forget to adjust -> ). ./danfe