commit 960bcc71c18b21e0444cfce3d9a5e7c10cb3172a
Author: Georg Baum <b...@lyx.org>
Date:   Sat Jun 4 17:33:19 2016 +0200

    Get rid of pseudo diffs when remerging strings
    
    cmake sorts the input files for lyx_pot.py internally, but autotools use a
    shell pattern like *.ui on the command line, so the order may be different
    on different machines. It is more robust not to require any sorting from the
    caller, so lyx_pot.py sorts now internally.

diff --git a/po/lyx_pot.py b/po/lyx_pot.py
index a58d8bf..761e3dd 100755
--- a/po/lyx_pot.py
+++ b/po/lyx_pot.py
@@ -654,6 +654,13 @@ if __name__ == '__main__':
 
     input_files += args
 
+    # Ensure a unique sorting of input files and ignore the order in which they
+    # are given on the command line. This is important to avoid huge
+    # pseudo-diffs in the generated .pot file which would then end up in the
+    # .po files as well. We had this situation for years with people using
+    # different build systems to remerge .po files.
+    input_files.sort()
+
     if input_type == 'ui':
         ui_l10n(input_files, output, base)
     elif input_type == 'latexfonts':

Reply via email to