12d150727a
Our current stripping strategy requires that shared libraries have the executable permission. However, this is by far not something recognized as a standard behavior: Debian/Ubuntu distributions for example do not have executable permissions on their libraries. Therefore, pushing to upstream packages fixes that add the executable permissions is not easy. As a result, this commit improves the stripping logic so that it not only strips the files that are executable, but also the ones that match '*.so*', which should match both the shared libraries and the dlopen()'able plugins, as long as they have a .so extension. Thanks to this addition, a number of manual "chmod +x" done by various packages can be removed. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libiconv
|
|
#
|
|
################################################################################
|
|
|
|
LIBICONV_VERSION = 1.14
|
|
LIBICONV_SITE = $(BR2_GNU_MIRROR)/libiconv
|
|
LIBICONV_INSTALL_STAGING = YES
|
|
|
|
# Remove not used preloadable libiconv.so
|
|
define LIBICONV_TARGET_REMOVE_PRELOADABLE_LIBS
|
|
rm -f $(TARGET_DIR)/usr/lib/preloadable_libiconv.so
|
|
endef
|
|
|
|
define LIBICONV_STAGING_REMOVE_PRELOADABLE_LIBS
|
|
rm -f $(STAGING_DIR)/usr/lib/preloadable_libiconv.so
|
|
endef
|
|
|
|
LIBICONV_POST_INSTALL_TARGET_HOOKS += LIBICONV_TARGET_REMOVE_PRELOADABLE_LIBS
|
|
LIBICONV_POST_INSTALL_STAGING_HOOKS += LIBICONV_STAGING_REMOVE_PRELOADABLE_LIBS
|
|
|
|
$(eval $(autotools-package))
|
|
|
|
# Configurations where the toolchain supports locales and the libiconv
|
|
# package is enabled are incorrect, because the toolchain already
|
|
# provides libiconv functionality, and having both confuses packages.
|
|
ifeq ($(BR2_PACKAGE_LIBICONV)$(BR2_ENABLE_LOCALE),yy)
|
|
$(error Libiconv should never be enabled when the toolchain supports locales. Report this failure to Buildroot developers)
|
|
endif
|