svn commit: r307648 - head
Ngie Cooper
yaneurabeya at gmail.com
Wed Oct 19 17:59:03 UTC 2016
> On Oct 19, 2016, at 10:42, Ed Maste <emaste at FreeBSD.org> wrote:
>
> Author: emaste
> Date: Wed Oct 19 17:42:45 2016
> New Revision: 307648
> URL: https://svnweb.freebsd.org/changeset/base/307648
>
> Log:
> Fix MK_SHAREDOCS test from r306864
>
> Groff is needed only if MK_GROFF and MK_SHAREDOCS are both true.
Thank you!!
-Ngie
> Modified:
> head/Makefile.inc1
>
> Modified: head/Makefile.inc1
> ==============================================================================
> --- head/Makefile.inc1 Wed Oct 19 17:32:38 2016 (r307647)
> +++ head/Makefile.inc1 Wed Oct 19 17:42:45 2016 (r307648)
> @@ -1586,7 +1586,7 @@ _strfile= usr.bin/fortune/strfile
> _gperf= gnu/usr.bin/gperf
> .endif
>
> -.if ${MK_SHAREDOCS} != "no" || ${MK_GROFF} != "no"
> +.if ${MK_SHAREDOCS} != "no" && ${MK_GROFF} != "no"
> _groff= gnu/usr.bin/groff \
> usr.bin/soelim
> .endif
>
More information about the svn-src-all
mailing list