Skip to content

abuild: refactor duplicate python detection to not use find(1)

Ghost User requested to merge (removed):findutils into master

the previous implementation used -regex, which is subtly different between busybox and findutils

[0-9]\+ matches on busybox, but doesn't match with gnu findutils
[0-9]+ matches with findutils, but doesn't match on busybox

this means python deps were subtly broken when findutils was installed (sometimes pulled via makedeps) vs not

Edited by Ghost User

Merge request reports