From: Sven Neumann Date: Wed, 18 Jun 2014 09:23:30 +0000 (+0200) Subject: Makefile: do not purge locale-archive from target X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=201adefb6e17e30d8e66b3d673c58cfd17ac1b5a;p=buildroot.git Makefile: do not purge locale-archive from target The rules to purge unwanted locales from the target also removed the locale-archive file from /usr/lib/locale which contains the locale definitions explicitly generated for the target. Signed-off-by: Sven Neumann Signed-off-by: Thomas Petazzoni --- diff --git a/Makefile b/Makefile index b3bd91eb54..1af51de506 100644 --- a/Makefile +++ b/Makefile @@ -538,7 +538,7 @@ LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST)) define PURGE_LOCALES rm -f $(LOCALE_WHITELIST) - for i in $(LOCALE_NOPURGE); do echo $$i >> $(LOCALE_WHITELIST); done + for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/man /usr/share/man /usr/lib/locale)); \ do \