From: Peter Korsgaard Date: Mon, 27 Oct 2008 09:45:44 +0000 (-0000) Subject: Strip gettext libraries on the target X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9042d9294308916e44a337a79236d59fc85c2bcd;p=buildroot.git Strip gettext libraries on the target Signed-off-by: Thomas Petazzoni --- diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk index 682ad19531..7858e1c376 100644 --- a/package/gettext/gettext.mk +++ b/package/gettext/gettext.mk @@ -154,6 +154,8 @@ endif $(TARGET_DIR)/usr/lib/libintl.so: $(STAGING_DIR)/$(GETTEXT_TARGET_BINARY) cp -dpf $(STAGING_DIR)/usr/lib/libgettext*.so* \ $(STAGING_DIR)/usr/lib/libintl*.so* $(TARGET_DIR)/usr/lib/ + $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libgettext*.so* + $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libintl*.so* rm -f $(addprefix $(TARGET_DIR)/usr/lib/, \ libgettext*.so*.la libintl*.so*.la) touch -c $@