package/libmnl: fix build failure

The rtnl-link-can application requires kernel headers of at least
version 4.11. Since the `make check` command compiles all examples, their
compilation is enabled only if the condition regarding the kernel headers
is satisfied.

Fixes:
- http://autobuild.buildroot.net/results/36c1619c8b02efeaf9caebae8bb5c3eb8a26238b/
- http://autobuild.buildroot.net/results/15f6dc103eec7bdeb5020acbc0ae99dc97c00e4e/

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Dario Binacchi 2023-05-23 19:31:42 +02:00 committed by Yann E. MORIN
parent f0795bd104
commit ddcefbcfd8

View File

@ -10,7 +10,11 @@ if BR2_PACKAGE_LIBMNL
config BR2_PACKAGE_LIBMNL_EXAMPLES
bool "install examples"
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
help
Install binary examples.
comment "examples needs a toolchain w/ headers >= 4.11"
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
endif