From . From c01f602d1926b0671fd2c8d91f7e52c4e4c9fb24 Mon Sep 17 00:00:00 2001 From: Niko Tyni Date: Sun, 11 Oct 2015 19:27:56 +0300 Subject: [PATCH] Sort the list of XS code files when generating RealPPPort.xs all_files_in_dir() uses readdir() ordering to make the list of input files. This can vary between build systems, breaking build reproducibility. --- cpan/Devel-PPPort/PPPort_xs.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpan/Devel-PPPort/PPPort_xs.PL b/cpan/Devel-PPPort/PPPort_xs.PL index 5f18940..149f2fe 100644 --- a/cpan/Devel-PPPort/PPPort_xs.PL +++ b/cpan/Devel-PPPort/PPPort_xs.PL @@ -38,7 +38,7 @@ END my $file; my $sec; -for $file (all_files_in_dir('parts/inc')) { +for $file (sort(all_files_in_dir('parts/inc'))) { my $spec = parse_partspec($file); my $msg = 0; -- 2.5.1 tr>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-01-12doc: Update htmlxref.cnf....* doc/htmlxref.cnf: Update from Texinfo. Add entries for "mes", "guix.ru", and "guix.zh_CN". Ludovic Courtès
2019-05-04doc: Update htmlxref.cnf....* doc/htmlxref.cnf (G): Switch to https. (geiser, guix.de, guix.es, hurd): New entries. Ludovic Courtès
2018-07-05doc: Update URL of the Emacs-Guix manual....* doc/htmlxref.cnf (EMACS_GUIX): Update URL. Ludovic Courtès
2018-07-05doc: Mention translations of the manual....* doc/guix.texi (Top): Add note about l10n. * doc/htmlxref.cnf: Add "guix.fr". Ludovic Courtès
2017-05-30doc: htmlxref: Fix link to Emacs-Guix manual....Reported-by: Ludovic Courtès <ludo@gnu.org> This fixes a regression introduced by commit 8ca0c88a894c685b624757e38ee7663534f03460. * doc/htmlxref.cnf (EMACS_GUIX): Fix the link to 'html_node'. Alex Kost
2017-05-04doc: Add references to Emacs-Guix manual....* doc/htmlxref.cnf: Add links to the real manual. * doc/contributing.texi (Formatting Code): Add reference to it. * doc/guix.texi (Package Management): Likewise. Alex Kost