diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-01 21:41:44 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-01 21:41:44 +0200 |
commit | fb0432ca624c24801f7b74c5e805442ec85018fa (patch) | |
tree | 47fc0dd1e6454ad50ad076fb1f6ac9d24845aec3 | |
parent | 0a1938f1bd05f6fe2f5d3fe28146c95bbf22aa98 (diff) | |
download | buildroot-fb0432ca624c24801f7b74c5e805442ec85018fa.tar.gz buildroot-fb0432ca624c24801f7b74c5e805442ec85018fa.zip |
bluez-alsa: fix select of libbsd
bluez-alsa/Config.in must select BR2_PACKAGE_LIBBSD, not the
non-existing BR2_PACKAGE_BSD.
Fixes:
http://autobuild.buildroot.net/results/ab6751615ac058d892258be9e7a8e110e68c62c5/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/bluez-alsa/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/bluez-alsa/Config.in b/package/bluez-alsa/Config.in index f082f4b838..1753da48f9 100644 --- a/package/bluez-alsa/Config.in +++ b/package/bluez-alsa/Config.in @@ -21,7 +21,7 @@ if BR2_PACKAGE_BLUEZ_ALSA config BR2_PACKAGE_BLUEZ_ALSA_HCITOP bool "hcitop" depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS - select BR2_PACKAGE_BSD + select BR2_PACKAGE_LIBBSD select BR2_PACKAGE_NCURSES help Enable top-like monitoring tool for HCI. |