[libsoup] Fix "make check" when LC_ALL is set
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup] Fix "make check" when LC_ALL is set
- Date: Tue, 26 May 2015 12:47:53 +0000 (UTC)
commit 0361d8de079a3f541dda6f2bc2d31e6b2c22f680
Author: Dan Winship <danw gnome org>
Date: Tue May 26 08:45:58 2015 -0400
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
libsoup/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am
index 1c71dd2..998bd41 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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]