This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
600 B
Plaintext
23 lines
600 B
Plaintext
config BR2_PACKAGE_FLEX
|
|
bool "flex"
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
help
|
|
A fast lexical analyser generator. A tool for generating
|
|
programs that perform pattern-matching on text.
|
|
|
|
http://flex.sourceforge.net/
|
|
|
|
config BR2_PACKAGE_FLEX_BINARY
|
|
bool "Install tool in the target"
|
|
# needs fork()
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_FLEX
|
|
# runtime dependency
|
|
select BR2_PACKAGE_M4
|
|
depends on BR2_USE_WCHAR # m4
|
|
help
|
|
Install the flex binary tool in the target filesystem.
|
|
|
|
comment "flex binary needs a toolchain w/ wchar"
|
|
depends on !BR2_USE_WCHAR
|