diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-02-23 11:11:19 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-23 12:33:24 +0100 |
commit | 5e986624b21c6e4daefd9cbd551263dbfddd0ac9 (patch) | |
tree | 2743d152dc27c1013e1d432a3f8116c822b70cb7 /package/alsa-utils | |
parent | 9520a56810ffb2c5d84aa2da283b37ec4c512b2c (diff) |
alsa-utils/Config.in: move comment to top, to fix nesting of config options
To allow proper nesting of suboptions of a package, the suboptions should
come directly after the main option, and cannot be interleaved with a
comment.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/alsa-utils')
-rw-r--r-- | package/alsa-utils/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/alsa-utils/Config.in b/package/alsa-utils/Config.in index 639859351..58ecf51d0 100644 --- a/package/alsa-utils/Config.in +++ b/package/alsa-utils/Config.in @@ -1,3 +1,7 @@ +comment "alsa-utils needs a toolchain w/ largefile, threads" + depends on BR2_USE_MMU # fork + depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS + config BR2_PACKAGE_ALSA_UTILS bool "alsa-utils" depends on BR2_USE_MMU # fork @@ -10,10 +14,6 @@ config BR2_PACKAGE_ALSA_UTILS http://www.alsa-project.org/ -comment "alsa-utils needs a toolchain w/ largefile, threads" - depends on BR2_USE_MMU # fork - depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS - if BR2_PACKAGE_ALSA_UTILS menu "ALSA utils selection" |