summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2018-12-14 22:22:43 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2018-12-14 22:22:43 +0100
commitafb45e0556eee1da8923610b7be9f2fa0985fc0c (patch)
tree3e7a61cd5addb1ab4969b4dc804247200034adaf /sys-libs/glibc/glibc-9999.ebuild
parentsys-libs/glibc: Fix to locale-gen (patchlv) and ebuild for bug 673124 (diff)
downloadgentoo-afb45e0556eee1da8923610b7be9f2fa0985fc0c.tar.gz
gentoo-afb45e0556eee1da8923610b7be9f2fa0985fc0c.tar.bz2
gentoo-afb45e0556eee1da8923610b7be9f2fa0985fc0c.zip
sys-libs/glibc: Rebase patchset, add C.UTF-8, fix bug 673124
Bug: https://bugs.gentoo.org/673124 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-libs/glibc/glibc-9999.ebuild')
-rw-r--r--sys-libs/glibc/glibc-9999.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild
index 61685dd31e10..c7e85a20715f 100644
--- a/sys-libs/glibc/glibc-9999.ebuild
+++ b/sys-libs/glibc/glibc-9999.ebuild
@@ -28,7 +28,7 @@ RELEASE_VER=${PV}
GCC_BOOTSTRAP_VER=20180511
# Gentoo patchset
-PATCH_VER=8
+PATCH_VER=9
SRC_URI+=" https://dev.gentoo.org/~dilfridge/distfiles/${P}-patches-${PATCH_VER}.tar.xz"
SRC_URI+=" multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz )"
@@ -1115,7 +1115,7 @@ run_locale_gen() {
# if the host locales.gen contains no entries, we'll install everything
local root="$1"
local locale_list="${root}/etc/locale.gen"
- if [[ -z $(locale-gen --list --config "${locale_list}") ]] ; then
+ if [[ $(locale-gen --list --config "${locale_list}") == "C.UTF-8" ]] ; then
ewarn "Generating all locales; edit /etc/locale.gen to save time/space"
locale_list="${root}/usr/share/i18n/SUPPORTED"
fi