svn commit: r282835 - stable/10/usr.sbin/bluetooth
Garrett Cooper
ngie at FreeBSD.org
Wed May 13 10:07:51 UTC 2015
Author: ngie
Date: Wed May 13 10:07:50 2015
New Revision: 282835
URL: https://svnweb.freebsd.org/changeset/base/282835
Log:
MFC r282054:
ath3kfw, bcmfw, bthidcontrol, bthidd all require usb(4); build them
conditionally if MK_USB != no
Modified:
stable/10/usr.sbin/bluetooth/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/bluetooth/Makefile
==============================================================================
--- stable/10/usr.sbin/bluetooth/Makefile Wed May 13 10:03:21 2015 (r282834)
+++ stable/10/usr.sbin/bluetooth/Makefile Wed May 13 10:07:50 2015 (r282835)
@@ -1,12 +1,10 @@
# $Id: Makefile,v 1.5 2003/09/08 02:28:35 max Exp $
# $FreeBSD$
+.include <bsd.own.mk>
+
SUBDIR= \
- ath3kfw \
- bcmfw \
bt3cfw \
- bthidcontrol \
- bthidd \
btpand \
hccontrol \
hcsecd \
@@ -17,5 +15,12 @@ SUBDIR= \
sdpcontrol \
sdpd
+.if ${MK_USB} != "no"
+SUBDIR+= ath3kfw
+SUBDIR+= bcmfw
+SUBDIR+= bthidcontrol
+SUBDIR+= bthidd
+.endif
+
.include <bsd.subdir.mk>
More information about the svn-src-stable-10
mailing list