Date: Mon, 28 Oct 2013 04:54:06 +0000 From: Alexey Dokuchaev <danfe@FreeBSD.org> To: Renato Botelho <garga@FreeBSD.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r331439 - head/security/checkpassword Message-ID: <20131028045406.GA30390@FreeBSD.org> In-Reply-To: <201310232232.r9NMWeoP077908@svn.freebsd.org> References: <201310232232.r9NMWeoP077908@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> > [...] > .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 <bsd.port.pre.mk> (but don't forget to adjust <bsd.port.post.mk> -> <bsd.port.pre.mk>). ./danfe
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20131028045406.GA30390>