libiconv: convert old-style hook to new-style hook

In addition to that, remove useless stripping since it is done
globally.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2010-09-01 22:45:13 +02:00
parent c42d2a3afe
commit 375b14fbeb

View File

@ -12,17 +12,19 @@ LIBICONV_INSTALL_TARGET = YES
LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
$(eval $(call AUTOTARGETS,package,libiconv))
$(LIBICONV_HOOK_POST_INSTALL):
# Remove not used preloadable libiconv.so # Remove not used preloadable libiconv.so
rm -f $(STAGING_DIR)/usr/lib/preloadable_libiconv.so define LIBICONV_TARGET_REMOVE_PRELOADABLE_LIBS
rm -f $(TARGET_DIR)/usr/lib/preloadable_libiconv.so rm -f $(TARGET_DIR)/usr/lib/preloadable_libiconv.so
ifneq ($(BR2_ENABLE_DEBUG),y) endef
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libiconv.so.*
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libcharset.so.* define LIBICONV_STAGING_REMOVE_PRELOADABLE_LIBS
endif rm -f $(STAGING_DIR)/usr/lib/preloadable_libiconv.so
touch $@ endef
LIBICONV_POST_INSTALL_TARGET_HOOKS += LIBICONV_TARGET_REMOVE_PRELOADABLE_LIBS
LIBICONV_POST_INSTALL_STAGING_HOOKS += LIBICONV_STAGING_REMOVE_PRELOADABLE_LIBS
$(eval $(call AUTOTARGETS,package,libiconv))
# Configurations where the toolchain supports locales and the libiconv # Configurations where the toolchain supports locales and the libiconv
# package is enabled are incorrect, because the toolchain already # package is enabled are incorrect, because the toolchain already