Skip to content
Snippets Groups Projects
Commit 1c48e4a4 authored by intrigeri's avatar intrigeri
Browse files

Make the output reproducible. Thanks to Chris Lamb <lamby@debian.org> for the...

Make the output reproducible. Thanks to Chris Lamb <lamby@debian.org> for the patch! (Closes: #829295)
parent 53149bad
No related branches found
No related tags found
No related merge requests found
Author: Chris Lamb <lamby@debian.org>
Subject: Make the output reproducible.
Bug-Debian: https://bugs.debian.org/829295
Forwarded: https://rt.perl.org/Ticket/Display.html?id=128517
---
lib/ExtUtils/ParseXS.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/ExtUtils/ParseXS.pm b/lib/ExtUtils/ParseXS.pm
index f67a82d..c17372a 100644
--- a/lib/ExtUtils/ParseXS.pm
+++ b/lib/ExtUtils/ParseXS.pm
@@ -686,7 +686,7 @@ EOF
var => $_,
do_setmagic => $self->{DoSetMagic},
do_push => undef,
- } ) for grep $self->{in_out}->{$_} =~ /OUT$/, keys %{ $self->{in_out} };
+ } ) for grep $self->{in_out}->{$_} =~ /OUT$/, sort keys %{ $self->{in_out} };
my $prepush_done;
# all OUTPUT done, so now push the return value on the stack
Make-the-output-reproducible.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment