ad0279f0ee
When static libraries are preferred we don't build dynamic libraries so it fails on the install phase. So don't try to do it for those cases. Fixes: http://autobuild.buildroot.net/results/651537ae1909b039e0cfc5c104ee87f93a9e5792/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
#############################################################
|
|
#
|
|
# gettext
|
|
#
|
|
#############################################################
|
|
|
|
GETTEXT_VERSION = 0.18.2
|
|
GETTEXT_SITE = $(BR2_GNU_MIRROR)/gettext
|
|
GETTEXT_INSTALL_STAGING = YES
|
|
GETTEXT_LICENSE = GPLv2+
|
|
GETTEXT_LICENSE_FILES = COPYING
|
|
|
|
GETTEXT_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
GETTEXT_CONF_OPT += \
|
|
--disable-libasprintf \
|
|
--disable-acl \
|
|
--disable-openmp \
|
|
--disable-rpath \
|
|
--disable-java \
|
|
--disable-native-java \
|
|
--disable-csharp \
|
|
--disable-relocatable \
|
|
--without-emacs
|
|
|
|
# Force build with NLS support, otherwise libintl is not built
|
|
# This is needed because some packages (eg. libglib2) requires
|
|
# locales, but do not properly depend on BR2_ENABLE_LOCALE, and
|
|
# instead select BR2_PACKAGE_GETTEXT. Those packages need to be
|
|
# fixed before we can remove the following 3 lines... :-(
|
|
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
|
|
# Ditch the tools since they're off and pull other dependencies
|
|
define GETTEXT_DISABLE_TOOLS
|
|
$(SED) 's/runtime gettext-tools/runtime/' $(@D)/Makefile.in
|
|
endef
|
|
endif # GETTEXT_TOOLS = n
|
|
|
|
# The tools tests build fails with full toolchain without threads
|
|
define GETTEXT_DISABLE_TESTS
|
|
$(SED) 's/m4 tests/m4/' $(@D)/gettext-tools/Makefile.in
|
|
endef
|
|
|
|
GETTEXT_POST_PATCH_HOOKS += GETTEXT_DISABLE_TOOLS
|
|
GETTEXT_POST_PATCH_HOOKS += GETTEXT_DISABLE_TESTS
|
|
|
|
$(eval $(autotools-package))
|