diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl index 6593237..46309e7 100755 --- a/abi-compliance-checker.pl +++ b/abi-compliance-checker.pl @@ -21960,6 +21960,10 @@ sub create_ABI_Dump() open(DUMP, ">", $DPath) || die ("can't open file \'$DPath\': $!\n"); print DUMP $ABI_DUMP; close(DUMP); + + # Ensure contents of archive have deterministic contents + chmod(0644, $DPath); + utime(0, 0, $DPath); if(not -s $DPath) { exitStatus("Error", "can't create ABI dump because something is going wrong with the Data::Dumper module");