svn commit: r290660 - head/share/man/man4

Garrett Cooper ngie at FreeBSD.org
Tue Nov 10 13:32:06 UTC 2015


Author: ngie
Date: Tue Nov 10 13:32:05 2015
New Revision: 290660
URL: https://svnweb.freebsd.org/changeset/base/290660

Log:
  Move the MK_BLUETOOTH block down below the architecture specific sections by the
  other generic options
  
  MFC after: 3 days
  X-MFC with: r290659
  PR: 193260
  Sponsored by: EMC / Isilon Storage Divisions

Modified:
  head/share/man/man4/Makefile

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Tue Nov 10 13:28:41 2015	(r290659)
+++ head/share/man/man4/Makefile	Tue Nov 10 13:32:05 2015	(r290660)
@@ -820,10 +820,6 @@ _bhyve.4=	bhyve.4
 .endif
 .endif
 
-.if ${MK_BLUETOOTH} != "no"
-MAN+=		ng_bluetooth.4
-.endif
-
 .if ${MACHINE_CPUARCH} == "mips"
 _nvram2env.4=	nvram2env.4
 .endif
@@ -832,6 +828,10 @@ _nvram2env.4=	nvram2env.4
 SUBDIR=	man4.${MACHINE_CPUARCH}
 .endif
 
+.if ${MK_BLUETOOTH} != "no"
+MAN+=		ng_bluetooth.4
+.endif
+
 .if ${MK_CCD} != "no"
 _ccd.4=		ccd.4
 .endif


More information about the svn-src-head mailing list