From: Alexandre Rostovtsev Date: Thu, 17 Sep 2015 01:57:10 +0000 (-0400) Subject: net-libs/libsoup: fix tests when LC_ALL is set X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c6b6a357c56c5c6dcc9915584b059f557d1ca91f;p=gentoo.git net-libs/libsoup: fix tests when LC_ALL is set Gentoo-Bug: 560258 Reported-by: Jonathan Lovelace Package-Manager: portage-2.2.20.1 --- diff --git a/net-libs/libsoup/libsoup-2.50.0.ebuild b/net-libs/libsoup/libsoup-2.50.0.ebuild index 443e4b1692ef..a121eaafa533 100644 --- a/net-libs/libsoup/libsoup-2.50.0.ebuild +++ b/net-libs/libsoup/libsoup-2.50.0.ebuild @@ -54,6 +54,10 @@ src_prepare() { || die "sed failed" fi + # fix sorting when LC_ALL/LC_COLLATE is set, bug #560258 + # fixed upstream in 2.52 + sed -e 's/LANG=C sort/LC_ALL=C sort/' -i libsoup/Makefile.{am,in} || die "sed failed" + gnome2_src_prepare }