Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Oct 2016 17:42:45 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307648 - head
Message-ID:  <201610191742.u9JHgj65065110@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610191742.u9JHgj65065110>