From owner-svn-ports-all@FreeBSD.ORG Tue Oct 22 06:03:36 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id B1991598; Tue, 22 Oct 2013 06:03:36 +0000 (UTC) Date: Tue, 22 Oct 2013 06:03:36 +0000 From: Alexey Dokuchaev To: Danilo Egea Gondolfo Subject: Re: svn commit: r331221 - head/databases/cego Message-ID: <20131022060336.GA37920@FreeBSD.org> References: <201310220455.r9M4tWR5020018@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201310220455.r9M4tWR5020018@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: Tue, 22 Oct 2013 06:03:36 -0000 On Tue, Oct 22, 2013 at 04:55:32AM +0000, Danilo Egea Gondolfo wrote: > New Revision: 331221 > URL: http://svnweb.freebsd.org/changeset/ports/331221 > > post-install: > - @${MKDIR} ${PREFIX}/share/cego > - @${CP} ${WRKSRC}/tools/* ${PREFIX}/share/cego/ > + @${MKDIR} ${STAGEDIR}${DATADIR} > + @${CP} ${WRKSRC}/tools/* ${STAGEDIR}${DATADIR} You could've also unmuted CP commands. Muting installation commands is generally discouraged (muting mkdir's is okay). No need for immediate action, just a note for the future. :) ./danfe