From owner-svn-ports-all@FreeBSD.ORG Wed Mar 5 02:58:48 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id CD4A0E9B; Wed, 5 Mar 2014 02:58:48 +0000 (UTC) Date: Wed, 5 Mar 2014 02:58:48 +0000 From: Alexey Dokuchaev To: Danilo Egea Gondolfo Subject: Re: svn commit: r344402 - head/math/primegen Message-ID: <20140305025848.GA91204@FreeBSD.org> References: <201402151509.s1FF9VUc063590@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201402151509.s1FF9VUc063590@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 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: Wed, 05 Mar 2014 02:58:48 -0000 On Sat, Feb 15, 2014 at 03:09:31PM +0000, Danilo Egea Gondolfo wrote: > New Revision: 344402 > URL: http://svnweb.freebsd.org/changeset/ports/344402 > QAT: https://qat.redports.org/buildarchive/r344402/ (Picking random one among similar commits...) > - @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin > + @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin > .endfor > .for file in ${HEADER_FILES} > - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include > + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include > [...] > + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib > .endfor > + @${INSTALL_MAN} ${WRKSRC}/primes.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 > + @${INSTALL_MAN} ${WRKSRC}/primegaps.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 > + @${INSTALL_MAN} ${WRKSRC}/primegen.3 ${STAGEDIR}${MAN3PREFIX}/man/man3 Guys, please do not mute (unmute) installation commands (INSTALL_FOO, CP, COPYTREE, etc.). Muting them makes build logs less useful for debugging of possible problems on installation stages, and generally leaves an impression that nothing was installed. This matter was discussed quite a number of times already; please try to pay attention to some svn-ports-@ mail traffic. ./danfe