summaryrefslogtreecommitdiffstats
path: root/aports/db.lua
diff options
context:
space:
mode:
Diffstat (limited to 'aports/db.lua')
-rw-r--r--aports/db.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/aports/db.lua b/aports/db.lua
index 43e646b..54e2459 100644
--- a/aports/db.lua
+++ b/aports/db.lua
@@ -211,7 +211,7 @@ end
function Aports:each_need_build()
return coroutine.wrap(function()
for aport in self:each_aport() do
- if aport:arch_enabled() and not aport:apk_file_exists() then
+ if aport:arch_enabled() and not aport:all_apks_exists() then
coroutine.yield(aport)
end
end