svn commit: r270187 - in stable/10: . etc lib share/mk

Garrett Cooper yaneurabeya at gmail.com
Wed Aug 20 00:28:34 UTC 2014


On Tue, Aug 19, 2014 at 4:33 PM, Ian Lepore <ian at freebsd.org> wrote:
> Author: ian
> Date: Tue Aug 19 23:33:51 2014
> New Revision: 270187
> URL: http://svnweb.freebsd.org/changeset/base/270187
>
> Log:
>   MFC r266473,267331,267511:

...

> Modified: stable/10/etc/Makefile
> ==============================================================================
> --- stable/10/etc/Makefile      Tue Aug 19 23:15:47 2014        (r270186)
> +++ stable/10/etc/Makefile      Tue Aug 19 23:33:51 2014        (r270187)
> @@ -174,7 +174,10 @@ afterinstall:
>  .endif
>
>  distribute:
> -       ${_+_}cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION}
> +       # Avoid installing tests here; "make distribution" will do this and
> +       # correctly place them in the right location.
> +       ${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
> +           DESTDIR=${DISTDIR}/${DISTRIBUTION}
>         ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}

Hi Ian!
    Does explicitly setting MK_TESTS=no work without Warner's changes
to bsd.own.mk/src.opts.mk? Did you test this option with WITH_TESTS=
yes ?
Thanks!
-Garrett


More information about the svn-src-all mailing list