svn commit: r344182 - head/share/mk

Conrad Meyer cem at freebsd.org
Fri Feb 15 23:14:45 UTC 2019


This one seems to have inadvertently removed a trailing parenthesis,
introducing a syntax error:

On Fri, Feb 15, 2019 at 2:49 PM Ed Maste <emaste at freebsd.org> wrote:
> New Revision: 344182
> ...
> ==============================================================================
> --- head/share/mk/bsd.prog.mk   Fri Feb 15 22:30:09 2019        (r344181)
> +++ head/share/mk/bsd.prog.mk   Fri Feb 15 22:48:50 2019        (r344182)
> ...
> @@ -74,7 +73,7 @@ TAGS+=                package=${PACKAGE:Uruntime}
>  TAG_ARGS=      -T ${TAGS:[*]:S/ /,/g}
>  .endif
>
> -.if defined(NO_SHARED) && (${NO_SHARED} != "no" && ${NO_SHARED} != "NO")
> +.if defined(NO_SHARED) && (${NO_SHARED:tl} != "no"

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

>  LDFLAGS+= -static
>  .endif

Best,
Conrad


More information about the svn-src-head mailing list