net: Fix enabling both Bluetooth and Networking support
We can't use '=' in net/Makefile since then one statement would override the value of the previous one when both CONFIG_NETWORKING and CONFIG_BLUETOOTH were set to 'y'. Instead, use '+='. Change-Id: Idba9916cc9fb2bd0e53975bdf0a86c0fd184533c Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
49885879f2
commit
b7ae2f44ad
1 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
|||
obj-$(CONFIG_BLUETOOTH) = bluetooth/
|
||||
obj-$(CONFIG_NETWORKING) = ip/
|
||||
obj-$(CONFIG_BLUETOOTH) += bluetooth/
|
||||
obj-$(CONFIG_NETWORKING) += ip/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue