diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2015-09-16 21:57:10 -0400 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2015-09-16 21:59:01 -0400 |
commit | c6b6a357c56c5c6dcc9915584b059f557d1ca91f (patch) | |
tree | 941932aca8f9311a54f899d8af9e22d2180df50e /net-libs/libsoup | |
parent | 3222175ee5cac767006dd6e7a8826a6bef47ab39 (diff) | |
download | gentoo-c6b6a357c56c5c6dcc9915584b059f557d1ca91f.tar.gz gentoo-c6b6a357c56c5c6dcc9915584b059f557d1ca91f.tar.xz |
net-libs/libsoup: fix tests when LC_ALL is set
Gentoo-Bug: 560258
Reported-by: Jonathan Lovelace
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'net-libs/libsoup')
-rw-r--r-- | net-libs/libsoup/libsoup-2.50.0.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net-libs/libsoup/libsoup-2.50.0.ebuild b/net-libs/libsoup/libsoup-2.50.0.ebuild index 443e4b1692e..a121eaafa53 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 } |