From ec3e4701995a6f5d5e2346b8b3bc854a1624f59a Mon Sep 17 00:00:00 2001 From: Tobias Ulmer Date: Fri, 14 Dec 2012 13:21:34 +0100 Subject: [PATCH] Explicitly load e2util module in e2lib It's a C module, so it does not share the strict loading requirements of the new Lua modules. Load it explicitly, otherwise many functions in e2lib will terminate with a backtrace unless another module loaded e2util before. Signed-off-by: Tobias Ulmer --- generic/e2lib.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/generic/e2lib.lua b/generic/e2lib.lua index fe424c4..cb0850f 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -48,6 +48,7 @@ local e2lib = {} package.loaded["e2lib"] = e2lib require("buildconfig") +require("e2util") local lock = require("lock") local err = require("err") local plugin = require("plugin") -- 2.39.5