svn commit: r307648 - head

Ed Maste emaste at FreeBSD.org
Wed Oct 19 17:42:46 UTC 2016


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.

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