Reproducible Arch Linux (August 2023)

Bernhard M. Wiedemann bernhardout at lsmod.de
Fri Aug 25 07:52:30 UTC 2023


On 25/08/2023 06.56, kpcyrd wrote:
> 
> It seems the order for this has an impact on the elf binary.
> 
> ```
> find . -type f -perm -u+w -print0 2>/dev/null | while IFS= read -rd '' 
> binary ; do

This should be trivial to fix with

find . -type f -perm -u+w -print0 2>/dev/null |
  sort -z |
  while IFS= read -rd '' binary ; do



For some reason, this did not show up in our
https://github.com/openSUSE/brp-check-suse/blob/master/brp-15-strip-debug#L22

but then I run most tests without debuginfo (for performance) and only 
use debuginfo in verification builds.


Ciao
Bernhard M.


More information about the rb-general mailing list