svn commit: r305877 - head/sysutils/puppet

Jason E. Hale jhale at freebsd.org
Sun Oct 14 14:31:41 UTC 2012


On Sunday, October 14, 2012 14:05:53 Steve Wills wrote:
> 
> -.if defined(WITH_PACKAGE_ROOT)
> -.if !defined(WITH_PACKAGE_ORIGIN)
> +.if ${PORT_OPTIONS:MPACKAGE_ROOT}
> +.if ! ${PORT_OPTIONS:MPACKAGE_ORIGN}

Typo here.
${PORT_OPTIONS:MPACKAGE_ORIGN} -> ${PORT_OPTIONS:MPACKAGE_ORIGIN}

> -.if !defined(NOPORTEXAMPLES)
> +.if ! ${PORT_OPTIONS:MEXAMPLES}
>  	cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
>  .endif

Logic is reversed here.
.if ! ${PORT_OPTIONS:MEXAMPLES} -> .if ${PORT_OPTIONS:MEXAMPLES}

- Jason


More information about the svn-ports-all mailing list