From dd66d17b49902dfd0e7fa1de887a44d6510294d3 Mon Sep 17 00:00:00 2001 From: Sertonix Date: Mon, 22 Jul 2024 23:22:37 +0200 Subject: [PATCH] abuild: fix object files detected as shared libs dmd installs an object file that matches *.so.* so we need to check for *.o explicitly. --- abuild.in | 1 + 1 file changed, 1 insertion(+) diff --git a/abuild.in b/abuild.in index 7d566be..53c1eb8 100644 --- a/abuild.in +++ b/abuild.in @@ -1626,6 +1626,7 @@ scan_shared_objects() { # we only want shared libs case $soname in + *.o) continue;; *.so|*.so.[0-9]*|*.c32);; *) continue;; esac