[Buildroot] [git commit] package/usbutils: needs gcc >= 4.9
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: 2021-01-14 20:59:59
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: 2021-01-14 20:59:59
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=d5a229551f966be0ebcd1e0004c7ec7e99f98eba branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Commit 8a26801c9fad1c7749200e22e9dfdeaeeb65f76e forgot to propagate the gcc dependency from libusb to usbutils Fixes: - http://autobuild.buildroot.org/results/ed8706a1ead398b5097b046524e710b1d3d0bb1e Signed-off-by: Fabrice Fontaine <redacted> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> --- package/usbutils/Config.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/package/usbutils/Config.in b/package/usbutils/Config.in
index 923853af04..a38eb2f2e5 100644
--- a/package/usbutils/Config.in
+++ b/package/usbutils/Config.in@@ -1,6 +1,7 @@ config BR2_PACKAGE_USBUTILS bool "usbutils" depends on BR2_TOOLCHAIN_HAS_THREADS # libusb + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb depends on BR2_PACKAGE_HAS_UDEV # needs hwdb select BR2_PACKAGE_LIBUSB help
@@ -8,5 +9,7 @@ config BR2_PACKAGE_USBUTILS http://linux-usb.sourceforge.net/ -comment "usbutils needs udev /dev management and toolchain w/ threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_HAS_UDEV +comment "usbutils needs udev /dev management and toolchain w/ threads, gcc >= 4.9" + depends on !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_PACKAGE_HAS_UDEV || \ + !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9