Update 2024-12-31 14:34 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id 2024-12-31 14:34:23 +01:00
parent 26abaf99b2
commit d8fff6ec32

View File

@ -68,7 +68,7 @@ _do_sql() {
WITH RECURSIVE pkg(x) AS (
SELECT \"$1\"
UNION
SELECT distinct dependspath FROM depends
SELECT distinct dependspath FROM canonical_depends
JOIN pkg ON fullpkgpath=x WHERE type in ($2)
) SELECT x, fullpkgname FROM pkg
JOIN ports ON fullpkgpath=x;