[vlc-commits] MODULES_LIST: list.sh: fix sort check

Francois Cartegnie git at videolan.org
Thu Dec 24 16:25:01 CET 2015


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Dec 24 16:20:36 2015 +0100| [82b4c8e82acc6a60b91581f10bb6ef755da2d16f] | committer: Francois Cartegnie

MODULES_LIST: list.sh: fix sort check

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=82b4c8e82acc6a60b91581f10bb6ef755da2d16f
---

 modules/list.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/list.sh b/modules/list.sh
index 84ac86f..d5c0e8e 100755
--- a/modules/list.sh
+++ b/modules/list.sh
@@ -62,7 +62,7 @@ echo "-------------------------------"
 echo "Checking for alphabetical order"
 echo "-------------------------------"
 
-grep " \* " $LISTFILE | LC_CTYPE=C sort -c && echo "OK"
+grep " \* " $LISTFILE | LC_COLLATE=C LC_CTYPE=C sort -c && echo "OK"
 
 
 echo ""



More information about the vlc-commits mailing list