2018-04-17 19:55:54 +00:00
|
|
|
Short description: Fedora-specific glibc install locale changes.
|
|
|
|
Author(s): Fedora glibc team <glibc@lists.fedoraproject.org>
|
|
|
|
Origin: PATCH
|
|
|
|
Upstream status: not-needed
|
|
|
|
|
|
|
|
The Fedora glibc build and install does not need the normal install
|
|
|
|
behaviour which updates the locale archive. The Fedora install phase
|
|
|
|
in the spec file of the rpm will handle this manually.
|
|
|
|
|
2017-11-07 11:05:14 +00:00
|
|
|
diff --git a/localedata/Makefile b/localedata/Makefile
|
2018-08-25 02:29:27 +00:00
|
|
|
index 0eea396ad86da956..54caabda33728207 100644
|
2017-11-07 11:05:14 +00:00
|
|
|
--- a/localedata/Makefile
|
|
|
|
+++ b/localedata/Makefile
|
2018-08-25 02:29:27 +00:00
|
|
|
@@ -413,6 +413,7 @@ define build-one-locale
|
2012-08-20 19:25:02 +00:00
|
|
|
echo -n '...'; \
|
|
|
|
input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \
|
2017-11-07 11:05:14 +00:00
|
|
|
$(LOCALEDEF) $$flags --alias-file=../intl/locale.alias \
|
2012-08-20 19:25:02 +00:00
|
|
|
+ --no-archive \
|
2017-11-07 11:05:14 +00:00
|
|
|
-i locales/$$input -f charmaps/$$charset \
|
2015-05-18 06:47:53 +00:00
|
|
|
$(addprefix --prefix=,$(install_root)) $$locale \
|
2018-08-25 02:29:27 +00:00
|
|
|
&& echo ' done';
|