summaryrefslogtreecommitdiff
path: root/package/sunxi-cedarx
diff options
context:
space:
mode:
authorThomas De Schampheleire <patrickdepinguin@gmail.com>2013-10-31 13:02:39 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-11-01 15:32:25 +0100
commitd6a44b2f0a2f9cedf08a44703054d3993ae1843d (patch)
tree561054ea066035af05d87bb176991f1e81fbe489 /package/sunxi-cedarx
parent90af4f16c5ce6c8c9584981bfbcbfcd3cef2cded (diff)
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/sunxi-cedarx')
-rw-r--r--package/sunxi-cedarx/Config.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/package/sunxi-cedarx/Config.in b/package/sunxi-cedarx/Config.in
index b280db065..fc6e5298c 100644
--- a/package/sunxi-cedarx/Config.in
+++ b/package/sunxi-cedarx/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_SUNXI_CEDARX
bool "sunxi-cedarx"
- depends on BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
+ depends on BR2_arm
+ depends on BR2_TOOLCHAIN_USES_GLIBC
help
Sunxi CedarX decoder libraries. CedarX is Allwinner's
multimedia co-processing technology for hardware accelerated
@@ -10,5 +11,6 @@ config BR2_PACKAGE_SUNXI_CEDARX
http://github.com/linux-sunxi/cedarx-libs
http://linux-sunxi.org/CedarX
-comment "sunxi-cedarx requires an eglibc/glibc based toolchain"
- depends on !BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
+comment "sunxi-cedarx needs an (e)glibc toolchain"
+ depends on BR2_arm
+ depends on !BR2_TOOLCHAIN_USES_GLIBC