diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-01 22:23:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-09 15:43:09 +0200 |
commit | 187b4d68e0ad9e92492345c5863da40e32863eda (patch) | |
tree | 64466964cd3c0c042d8b29c66e7dc9ea4e1f1949 /package/gettext/gettext.mk | |
parent | 078470ac5839f4fde59f6ecb67320216d4f2383b (diff) | |
download | buildroot-187b4d68e0ad9e92492345c5863da40e32863eda.tar.gz buildroot-187b4d68e0ad9e92492345c5863da40e32863eda.zip |
gettext: remove support for gettext-tools on target
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>
Diffstat (limited to 'package/gettext/gettext.mk')
-rw-r--r-- | package/gettext/gettext.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk index b5efa766d3..52a72db716 100644 --- a/package/gettext/gettext.mk +++ b/package/gettext/gettext.mk @@ -46,16 +46,12 @@ ifeq ($(BR2_ENABLE_LOCALE),) GETTEXT_CONF_OPT += --enable-nls endif -# When the gettext tools are not enabled in the configuration, we only -# install libintl to the target. -ifeq ($(BR2_PACKAGE_GETTEXT_TOOLS),) # When static libs are preferred the .so files aren't created ifeq ($(BR2_PREFER_STATIC_LIB),) define GETTEXT_INSTALL_TARGET_CMDS cp -dpf $(STAGING_DIR)/usr/lib/libintl*.so* $(TARGET_DIR)/usr/lib/ endef endif -endif # GETTEXT_TOOLS = n # Disable interactive confirmation in host gettextize for package fixups define HOST_GETTEXT_GETTEXTIZE_CONFIRMATION |