From: Tobias Ulmer Date: Fri, 13 Dec 2013 17:05:32 +0000 (+0100) Subject: e2build: Get dependencies via the extendable e2tool.dlist X-Git-Tag: e2factory-2.3.15rc1~276 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=170d03a099d7325a3d1b74b1c310a7c7dd32e86e;p=e2factory.git e2build: Get dependencies via the extendable e2tool.dlist I can't see a reason why it's calling e2tool.get_depends directly. Signed-off-by: Tobias Ulmer --- diff --git a/local/e2build.lua b/local/e2build.lua index ccbd5eb..325d6de 100644 --- a/local/e2build.lua +++ b/local/e2build.lua @@ -823,7 +823,7 @@ local function sources(info, r, return_flags) local rc, re local e = err.new("installing build time dependencies") local deps - deps = e2tool.get_depends(info, r) + deps = e2tool.dlist(info, r) for i, dep in pairs(deps) do local destdir = e2lib.join(res.build_config.T, "dep", dep) rc, re = e2build.unpack_result(info, r, dep, destdir)