svn commit: r384140 - in head/math/coinmp: . files

Alexey Dokuchaev danfe at FreeBSD.org
Fri Apr 17 08:12:00 UTC 2015


On Fri, Apr 17, 2015 at 08:02:35AM +0000, Kurt Jaeger wrote:
> New Revision: 384140
> URL: https://svnweb.freebsd.org/changeset/ports/384140
> 
> Log:
>   math/coinmp: 1.8.0 -> 1.8.1
>   
>   - Minor fixes
> [...]
>  MAINTAINER=	cpm at fbsd.es
> -COMMENT=	Optimization library with support for COIN-OR CLP, CBC, and CGL
> +COMMENT=	Optimization library with support for COIN-OR, CLP, CBC and CGL

In FreeBSD we respect Oxford comma.  Notice that it was there before.

>  check regression-test test: build
> -	@(cd ${WRKSRC};  ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
> +	@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \

If you decided to change this line for no real reason, you could've also
replaced it with something like this to avoid explicit "cd" and two-command
construct (longer and less readable, requires subshell, etc.):

	@${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} ... -C ${WRKSRC}

./danfe


More information about the svn-ports-head mailing list