diff options
author | Julian Andres Klode <jak@debian.org> | 2015-11-30 20:33:43 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2015-11-30 20:33:43 +0100 |
commit | be9dbd0642538761073bfa461646822d4e800985 (patch) | |
tree | 0d80373ba691b18de46b70d21e18d25b0fb890e5 /buildlib | |
parent | 0507225b1b437a83201d204e45b52fb9e581b354 (diff) |
defaults.mak: Set LC_COLLATE=C.UTF-8 for reproducible sort order
With the 1.1.3 release we have seen some re-ordering of the
translation template and the translations. It turns out that
this is because sort sorts differently depending on the locale,
so let's force it to always sort in the C locale.
Diffstat (limited to 'buildlib')
-rw-r--r-- | buildlib/defaults.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildlib/defaults.mak b/buildlib/defaults.mak index c7931c504..783cc11b0 100644 --- a/buildlib/defaults.mak +++ b/buildlib/defaults.mak @@ -180,3 +180,6 @@ ifndef PARALLEL_RUN MAKEFLAGS += -j $(NUM_PROCS) endif endif + +# This makes sorting predictable +export LC_COLLATE=C.UTF-8 |