svn commit: r535079 - head/devel/bitkeeper

Alexey Dokuchaev danfe at freebsd.org
Wed May 13 06:20:19 UTC 2020


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


More information about the svn-ports-head mailing list