mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/libbsd: fix display of Config.in comment
Commite13855c48fwrongly added depends on BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU to display the comment "libbsd needs a toolchain w/ threads, wchar" The same error has also been made for minizip. To fix this issue, move dependency !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU) under BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit2261eb3a36) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
496dfa8dd9
commit
d63d5db769
@@ -5,12 +5,12 @@ config BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|||||||
depends on !BR2_microblaze
|
depends on !BR2_microblaze
|
||||||
depends on !BR2_arc
|
depends on !BR2_arc
|
||||||
depends on !BR2_xtensa
|
depends on !BR2_xtensa
|
||||||
|
# uClibc on noMMU doesn't provide __register_atfork()
|
||||||
|
depends on !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU)
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBBSD
|
config BR2_PACKAGE_LIBBSD
|
||||||
bool "libbsd"
|
bool "libbsd"
|
||||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||||
# uClibc on noMMU doesn't provide __register_atfork()
|
|
||||||
depends on !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU)
|
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
help
|
help
|
||||||
@@ -24,5 +24,4 @@ config BR2_PACKAGE_LIBBSD
|
|||||||
|
|
||||||
comment "libbsd needs a toolchain w/ threads, wchar"
|
comment "libbsd needs a toolchain w/ threads, wchar"
|
||||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||||
depends on BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU
|
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
config BR2_PACKAGE_MINIZIP
|
config BR2_PACKAGE_MINIZIP
|
||||||
bool "minizip"
|
bool "minizip"
|
||||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||||
depends on !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU) # libbsd
|
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
|
||||||
depends on BR2_USE_WCHAR # libbsd
|
depends on BR2_USE_WCHAR # libbsd
|
||||||
select BR2_PACKAGE_LIBBSD
|
select BR2_PACKAGE_LIBBSD
|
||||||
@@ -20,5 +19,4 @@ config BR2_PACKAGE_MINIZIP_DEMOS
|
|||||||
|
|
||||||
comment "minizip needs a toolchain w/ threads, wchar"
|
comment "minizip needs a toolchain w/ threads, wchar"
|
||||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||||
depends on BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU
|
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
||||||
|
|||||||
Reference in New Issue
Block a user