diff options
author | Sven Neumann <neumann@teufel.de> | 2014-06-18 11:23:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-15 22:56:23 +0200 |
commit | 201adefb6e17e30d8e66b3d673c58cfd17ac1b5a (patch) | |
tree | 4c2f790d2e44b52c94a3afca235f153684d198f3 | |
parent | 21510bdb0bfee931d2ac4929663e8398278b8e2f (diff) | |
download | buildroot-201adefb6e17e30d8e66b3d673c58cfd17ac1b5a.tar.gz buildroot-201adefb6e17e30d8e66b3d673c58cfd17ac1b5a.zip |
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 <neumann@teufel.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |