summaryrefslogtreecommitdiff
path: root/package/sunxi-mali
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-mali
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-mali')
-rw-r--r--package/sunxi-mali/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/sunxi-mali/Config.in b/package/sunxi-mali/Config.in
index c479cf4be..2ca049db6 100644
--- a/package/sunxi-mali/Config.in
+++ b/package/sunxi-mali/Config.in
@@ -57,5 +57,6 @@ endchoice
endif
-comment "sunxi-mali requires an eglibc/glibc based toolchain"
- depends on BR2_arm && !BR2_TOOLCHAIN_USES_GLIBC
+comment "sunxi-mali needs an (e)glibc toolchain"
+ depends on BR2_arm
+ depends on !BR2_TOOLCHAIN_USES_GLIBC