This patch ensures that the 'tclIndex' files generated by 'auto_mkindex' are sorted in a deterministic fashion. Fixes a non-determinism issue reported at . --- tcl8.6.4/library/auto.tcl 2015-02-26 17:57:28.000000000 +0100 +++ tcl8.6.4/library/auto.tcl 2015-11-13 23:18:34.964831717 +0100 @@ -207,6 +207,9 @@ proc auto_mkindex {dir args} { set args *.tcl } + # Keep file names sorted in a determistic order. + set args [lsort -ascii $args] + auto_mkindex_parser::init foreach file [glob -- {*}$args] { try { @@ -241,6 +244,10 @@ proc auto_mkindex_old {dir args} { if {![llength $args]} { set args *.tcl } + + # Keep file names sorted in a determistic order. + set args [lsort -ascii $args] + foreach file [glob -- {*}$args] { set f "" set error [catch { ue='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/po/doc/guix-cookbook.fa.po
AgeCommit message (Expand)Author
2021-10-17nls: Update translations.Julien Lepiller
2021-09-02nls: Update translations....* po/packages/it.po: New file. * po/packages/LINGUAS: Add `it'. * po/*/*.po: Update translations. Julien Lepiller
2021-08-04nls: Update translations....* po/doc/guix-cookbook.ru.po: New file. * po/doc/guix-cookbook.sk.po: New file. * po/*/*.po: Update translations. * doc/local.mk (COOKBOOK_LANGUAGES): Add ru and sk. (info_TEXINFOS): Add Russian and Slovak cookbooks. * po/doc/local.mk (DOC_COOKBOOK_PO_FILES): Add Russian and Slovak po files. Julien Lepiller
2021-05-10nls: Update translations.Maxim Cournoyer
2021-04-18nls: Add Persian translation....* po/packages/fa.po: New file. * po/packages/LINGUAS: Add 'fa'. * po/doc/guix-cookbook.fa.po: New file. * po/doc/guix-manual.fa.po: New file. * po/doc/local.mk (DOC_PO_FILES, DOC_COOKBOOK_PO_FILES): Add them. * doc/local.mk (info_TEXINFOS): Add them. Julien Lepiller