187b4d68e0
This commit removes the BR2_PACKAGE_GETTEXT_TOOLS option, which could be used to install gettext tools on the target. This is not needed, because Buildroot is not designed to provide a full development environment on the target, and gettext translation files should be processed on the build machine, using the host gettext tools. Remove this option will allow to optimize the build time of gettext on the target, by only building the gettext runtime libraries. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
19 lines
542 B
Plaintext
19 lines
542 B
Plaintext
config BR2_PACKAGE_GETTEXT
|
|
bool "gettext"
|
|
depends on BR2_NEEDS_GETTEXT
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
The GNU `gettext' utilities are a set of tools that provide a
|
|
framework to help other GNU packages produce multi-lingual
|
|
messages.
|
|
|
|
Only the libintl library will be installed in the
|
|
target. The full gettext suite, including tools, will be
|
|
installed in the staging directory.
|
|
|
|
http://www.gnu.org/software/gettext/
|
|
|
|
comment "gettext needs a toolchain w/ wchar"
|
|
depends on BR2_NEEDS_GETTEXT
|
|
depends on !BR2_USE_WCHAR
|