]> git.saurik.com Git - apt.git/commitdiff
defaults.mak: Set LC_COLLATE=C.UTF-8 for reproducible sort order
authorJulian Andres Klode <jak@debian.org>
Mon, 30 Nov 2015 19:33:43 +0000 (20:33 +0100)
committerJulian Andres Klode <jak@debian.org>
Mon, 30 Nov 2015 19:33:43 +0000 (20:33 +0100)
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.

buildlib/defaults.mak

index c7931c504ffa75ff2dd19fa8eaf2368ff9ae0282..783cc11b06e8fd1993febf5fb9bd527f4e00d8a4 100644 (file)
@@ -180,3 +180,6 @@ ifndef PARALLEL_RUN
   MAKEFLAGS += -j $(NUM_PROCS)
  endif
 endif
+
+# This makes sorting predictable
+export LC_COLLATE=C.UTF-8