diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-10 05:50:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-10 05:50:48 +0000 |
commit | 3865572f1f22f3e6c36defd1cc3d36b516ea7e51 (patch) | |
tree | bb9f03e6bc40f8ca1aa5361c4c8847903c7d7a3e /sys-libs | |
parent | Mark 0.2.1 stable on alpha (diff) | |
download | gentoo-2-3865572f1f22f3e6c36defd1cc3d36b516ea7e51.tar.gz gentoo-2-3865572f1f22f3e6c36defd1cc3d36b516ea7e51.tar.bz2 gentoo-2-3865572f1f22f3e6c36defd1cc3d36b516ea7e51.zip |
Fix building with non-C locales (like estonian) #104116 by Toomas Mottus.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/ss/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/ss/files/ss-1.38-locale.patch | 14 | ||||
-rw-r--r-- | sys-libs/ss/ss-1.38.ebuild | 4 |
3 files changed, 21 insertions, 3 deletions
diff --git a/sys-libs/ss/ChangeLog b/sys-libs/ss/ChangeLog index 63939abc81a4..d83329b3ae99 100644 --- a/sys-libs/ss/ChangeLog +++ b/sys-libs/ss/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/ss # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ss/ChangeLog,v 1.18 2005/09/08 17:05:53 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ss/ChangeLog,v 1.19 2005/09/10 05:50:48 vapier Exp $ + + 10 Sep 2005; Mike Frysinger <vapier@gentoo.org> + +files/ss-1.38-locale.patch, ss-1.38.ebuild: + Fix building with non-C locales (like estonian) #104116 by Toomas Mottus. 08 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> ss-1.38.ebuild: Stable on mips. diff --git a/sys-libs/ss/files/ss-1.38-locale.patch b/sys-libs/ss/files/ss-1.38-locale.patch new file mode 100644 index 000000000000..ecf59ab0c59a --- /dev/null +++ b/sys-libs/ss/files/ss-1.38-locale.patch @@ -0,0 +1,14 @@ +Fix issues with non-C locales (like ee) + +http://bugs.gentoo.org/104116 + +--- lib/ss/mk_cmds.sh.in ++++ lib/ss/mk_cmds.sh.in +@@ -2,6 +2,7 @@ + # + # + ++export LC_ALL=C + DIR="${DIR-@datadir@/ss}" + SS_DIR="@SS_DIR@" + AWK=@AWK@ diff --git a/sys-libs/ss/ss-1.38.ebuild b/sys-libs/ss/ss-1.38.ebuild index 3cb9132e5585..bac91448bf9e 100644 --- a/sys-libs/ss/ss-1.38.ebuild +++ b/sys-libs/ss/ss-1.38.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ss/ss-1.38.ebuild,v 1.13 2005/09/08 17:05:53 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ss/ss-1.38.ebuild,v 1.14 2005/09/10 05:50:48 vapier Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -22,7 +22,7 @@ S=${WORKDIR}/e2fsprogs-${PV} src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}"/${PN}-1.37-sed-locale.patch + epatch "${FILESDIR}"/${PN}-1.38-locale.patch epatch "${FILESDIR}"/${PN}-1.37-makefile.patch export LDCONFIG=/bin/true export CC=$(tc-getCC) |