svn commit: r440548 - head/net/anet

Alexey Dokuchaev danfe at FreeBSD.org
Wed May 10 15:04:25 UTC 2017


On Wed, May 10, 2017 at 09:00:26AM +0000, Dmitry Marakasov wrote:
> New Revision: 440548
> URL: https://svnweb.freebsd.org/changeset/ports/440548
> 
> Log:
>   - Update WWW

Please be more careful when writing commit messages; e.g. now the latest
changes in the port's Makefile (muting of mkdir's) would be annotated as
just "- Update WWW" which is clearly wrong and thus confusing.

> Modified:
>   head/net/anet/Makefile
>   head/net/anet/pkg-descr
> 
> Modified: head/net/anet/Makefile
> ==============================================================================
> --- head/net/anet/Makefile	Wed May 10 08:34:00 2017	(r440547)
> +++ head/net/anet/Makefile	Wed May 10 09:00:26 2017	(r440548)
> @@ -35,12 +35,12 @@ post-patch:
>  		${WRKSRC}/doc/Makefile
>  
>  do-build:
> -	${MKDIR} ${WRKSRC}/doc/html
> +	@${MKDIR} ${WRKSRC}/doc/html
>  	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
>  		${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET}
>  
>  do-install:
> -	${MKDIR} ${STAGEDIR}${PREFIX}/lib/gnat \
> +	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/gnat \
>  		${STAGEDIR}${PREFIX}/lib/anet \
>  		${STAGEDIR}${PREFIX}/include/anet
>  	${INSTALL_DATA} ${WRKSRC}/src/*.ad[bs] ${WRKSRC}/src/bsd/*.ad[bs] \
> @@ -51,7 +51,7 @@ do-install:
>  	${INSTALL_DATA} ${WRKSRC}/gnat/anet.gpr ${STAGEDIR}${PREFIX}/lib/gnat
>  
>  do-install-DOCS-on:
> -	${MKDIR} ${STAGEDIR}${DOCSDIR}
> +	@${MKDIR} ${STAGEDIR}${DOCSDIR}
>  	(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})

./danfe


More information about the svn-ports-all mailing list