svn commit: r256022 - head/etc/rc.d

Glen Barber gjb at FreeBSD.org
Thu Oct 3 15:19:17 UTC 2013


Author: gjb
Date: Thu Oct  3 15:19:16 2013
New Revision: 256022
URL: http://svnweb.freebsd.org/changeset/base/256022

Log:
  Do not install bluetooth rc(8) scripts if MK_BLUETOOTH = no.
  
  Approved by:	re (glebius)
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/etc/rc.d/Makefile

Modified: head/etc/rc.d/Makefile
==============================================================================
--- head/etc/rc.d/Makefile	Thu Oct  3 12:28:51 2013	(r256021)
+++ head/etc/rc.d/Makefile	Thu Oct  3 15:19:16 2013	(r256022)
@@ -21,11 +21,11 @@ FILES=	DAEMON \
 	auditd \
 	auditdistd \
 	bgfsck \
-	bluetooth \
+	${_bluetooth} \
 	bootparams \
 	bridge \
 	bsnmpd \
-	bthidd \
+	${_bthidd} \
 	ccd \
 	cleanvar \
 	cleartmp \
@@ -48,7 +48,7 @@ FILES=	DAEMON \
 	gptboot \
 	gssd \
 	hastd \
-	hcsecd \
+	${_hcsecd} \
 	hostapd \
 	hostid \
 	hostid_save \
@@ -182,6 +182,9 @@ _nscd=		nscd
 .endif
 
 .if ${MK_BLUETOOTH} != "no"
+_bluetooth=	bluetooth
+_bthidd=	bthidd
+_hcsecd=	hcsecd
 _ubthidhci=	ubthidhci
 .endif
 


More information about the svn-src-head mailing list