svn commit: r255505 - head/share/man/man5

Glen Barber gjb at FreeBSD.org
Fri Sep 13 03:39:20 UTC 2013


Author: gjb
Date: Fri Sep 13 03:39:19 2013
New Revision: 255505
URL: http://svnweb.freebsd.org/changeset/base/255505

Log:
  Do not install freebsd-update.conf.5 manual if WITHOUT_FREEBSD_UPDATE is
  set.
  
  MFC after:	3 days
  Approved by:	re (delphij)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/man/man5/Makefile

Modified: head/share/man/man5/Makefile
==============================================================================
--- head/share/man/man5/Makefile	Fri Sep 13 02:28:44 2013	(r255504)
+++ head/share/man/man5/Makefile	Fri Sep 13 03:39:19 2013	(r255505)
@@ -26,7 +26,6 @@ MAN=	acct.5 \
 	fbtab.5 \
 	fdescfs.5 \
 	forward.5 \
-	freebsd-update.conf.5 \
 	fs.5 \
 	fstab.5 \
 	group.5 \
@@ -87,6 +86,10 @@ ATF=			${.CURDIR}/../../../contrib/atf
 _atf_formats.5=		atf-formats.5
 .endif
 
+.if ${MK_FREEBSD_UPDATE} != "no"
+MAN+=	freebsd-update.conf.5
+.endif
+
 .if ${MK_HESIOD} != "no"
 MAN+=	hesiod.conf.5 
 .endif


More information about the svn-src-all mailing list