From 93b18761109aefcee77f57a1c2ad6ba4bccecedf Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 9 Jan 2014 09:08:55 +0000 Subject: db: each_need_build: filter out aports not relevant to arch --- aports/db.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aports/db.lua b/aports/db.lua index d81a0d2..cf8f3e0 100644 --- a/aports/db.lua +++ b/aports/db.lua @@ -206,7 +206,7 @@ end function Aports:each_need_build() return coroutine.wrap(function() for aport in self:each_aport() do - if not aport:apk_file_exists() then + if aport:arch_enabled() and not aport:apk_file_exists() then coroutine.yield(aport) end end -- cgit v1.2.3