diff options
author | 2013-10-31 13:02:39 +0100 | |
---|---|---|
committer | 2013-11-01 15:32:25 +0100 | |
commit | d6a44b2f0a2f9cedf08a44703054d3993ae1843d (patch) | |
tree | 561054ea066035af05d87bb176991f1e81fbe489 /package/on2-8170-libs | |
parent | 90af4f16c5ce6c8c9584981bfbcbfcd3cef2cded (diff) | |
download | buildroot-d6a44b2f0a2f9cedf08a44703054d3993ae1843d.tar.gz buildroot-d6a44b2f0a2f9cedf08a44703054d3993ae1843d.tar.bz2 |
Config.in files: add/update comments on (e)glibc dependencies
This patch adds missing comments about (e)glibc dependencies and updates the
text of existing comments.
Additionally, it splits dependency expressions for the touched packages from
depends on BR2_BASE_DEP && !BR2_TOOLCHAIN_USES_GLIBC
to
depends on BR2_BASE_DEP
depends on !BR2_TOOLCHAIN_USES_GLIBC
so that (positive) base dependencies are separate from the (negative)
toolchain dependencies. This strategy makes it easier to write such comments
(because one can simply copy the base dependency from the actual package
config option), but also avoids complex and long boolean expressions.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/on2-8170-libs')
-rw-r--r-- | package/on2-8170-libs/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/on2-8170-libs/Config.in b/package/on2-8170-libs/Config.in index 8c2d963810..b573cfe3de 100644 --- a/package/on2-8170-libs/Config.in +++ b/package/on2-8170-libs/Config.in @@ -10,5 +10,6 @@ config BR2_PACKAGE_ON2_8170_LIBS http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer -comment "on2-8170 libs requires a linux kernel to be built" - depends on !BR2_LINUX_KERNEL +comment "on2-8170-libs needs an (e)glibc toolchain and a linux kernel to be built" + depends on BR2_arm926t + depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_USES_GLIBC |