summaryrefslogtreecommitdiffstats
path: root/aports/pkg.lua
diff options
context:
space:
mode:
Diffstat (limited to 'aports/pkg.lua')
-rw-r--r--aports/pkg.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/aports/pkg.lua b/aports/pkg.lua
index f21f352..5d40db5 100644
--- a/aports/pkg.lua
+++ b/aports/pkg.lua
@@ -110,6 +110,9 @@ function M.each_dependency(pkg)
for _,dep in pairs(pkg.makedepends or {}) do
coroutine.yield(dep)
end
+ for _,dep in pairs(pkg.checkdepends or {}) do
+ coroutine.yield(dep)
+ end
end)
end