abuild: fix object files detected as shared libs

dmd installs an object file that matches *.so.* so we need to check for
*.o explicitly.
This commit is contained in:
Sertonix 2024-07-22 23:22:37 +02:00 committed by Natanael Copa
parent ac45be0c71
commit dd66d17b49

View File

@ -1626,6 +1626,7 @@ scan_shared_objects() {
# we only want shared libs
case $soname in
*.o) continue;;
*.so|*.so.[0-9]*|*.c32);;
*) continue;;
esac