From owner-svn-ports-head@freebsd.org Wed May 13 06:20:18 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ED58A2EAB30; Wed, 13 May 2020 06:20:18 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49MPfp5yd7z4ZDK; Wed, 13 May 2020 06:20:18 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id C419ECFF5; Wed, 13 May 2020 06:20:18 +0000 (UTC) Date: Wed, 13 May 2020 06:20:18 +0000 From: Alexey Dokuchaev To: Cy Schubert Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r535079 - head/devel/bitkeeper Message-ID: <20200513062018.GA276@FreeBSD.org> References: <202005130230.04D2U152022548@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202005130230.04D2U152022548@repo.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2020 06:20:19 -0000 On Wed, May 13, 2020 at 02:30:01AM +0000, Cy Schubert wrote: > New Revision: 535079 > URL: https://svnweb.freebsd.org/changeset/ports/535079 > > Log: > Supply a symlink to ${LOCALBASE}/bitkeeper/bk in ${LOCALBASE}/bin. > > ... > @@ -28,5 +29,8 @@ ALL_TARGET= p > > do-build: > @(cd ${WRKSRC}; ${MAKE_CMD} ${ALL_TARGET}) > + > +post-install: > + @cd ${STAGEDIR}${PREFIX}/bin/ && ${LN} -s ../bitkeeper/bk This is kind of installation command (it adds new file), so it should not be muted. Also, you don't need "cd" which only makes it harder to read: ${LN} -s ../bitkeeper/bk ${STAGEDIR}${PREFIX}/bin ./danfe