summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2015-05-26 08:45:58 -0400
committerDan Winship <danw@gnome.org>2015-05-26 08:45:58 -0400
commit0361d8de079a3f541dda6f2bc2d31e6b2c22f680 (patch)
tree9fa4e5d5bf2f44114f9cdca970803be481c0ff52
parent3d2fbc1f4aeea692be162f2dc40ef1a5dd774689 (diff)
downloadlibsoup-0361d8de079a3f541dda6f2bc2d31e6b2c22f680.tar.gz
Fix "make check" when LC_ALL is set
The symbol check should have been doing "LC_ALL=C sort ...", not "LANG=C sort ...", since LC_ALL overrides LANG. https://bugzilla.redhat.com/show_bug.cgi?id=1224989
-rw-r--r--libsoup/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am
index 1c71dd29..998bd412 100644
--- a/libsoup/Makefile.am
+++ b/libsoup/Makefile.am
@@ -312,6 +312,6 @@ check-local:
@nm $(builddir)/.libs/libsoup-2.4.so | \
grep "^[[:xdigit:]]\+ [BGTRS] " | \
sed "s/^[[:xdigit:]]\+ [BGTRS] //" | \
- env LANG=C sort -u | \
+ env LC_ALL=C sort -u | \
diff -U0 $(srcdir)/libsoup-2.4.sym - >&2
endif