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.

Reply via email to