From: Christian Grothoff Date: Mon, 16 Dec 2019 16:17:46 +0000 (+0100) Subject: sort using C locale for a more stable sort X-Git-Tag: v0.12.0~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=73ee949868200082b7e9131d2f410f289fd1c416;p=oweals%2Fgnunet.git sort using C locale for a more stable sort --- diff --git a/bin/pogen.sh b/bin/pogen.sh index 453e0b1d8..b97ef046a 100755 --- a/bin/pogen.sh +++ b/bin/pogen.sh @@ -1,5 +1,9 @@ #!/bin/sh # This script is in the public domain. + +# Set language domain to C for a more stable sort! +export LANG=C + find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in