Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 May 2015 10:07:50 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r282835 - stable/10/usr.sbin/bluetooth
Message-ID:  <201505131007.t4DA7oF9080824@svn.freebsd.org>

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



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