From: Tobias Ulmer Date: Wed, 8 Aug 2012 14:00:18 +0000 (+0200) Subject: Require the plugin module X-Git-Tag: e2factory-2.3.13rc1~177 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=3f333fa7f4a6fd26707d183892dd70accfb59c17;p=e2factory.git Require the plugin module Signed-off-by: Tobias Ulmer --- diff --git a/generic/e2lib.lua b/generic/e2lib.lua index 72abbba..3b0e944 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -30,7 +30,7 @@ require("strict") require("buildconfig") local lock = require("lock") local err = require("err") -require("plugin") +local plugin = require("plugin") local tools = require("tools") local cache = require("cache") local luafile = require("luafile") diff --git a/generic/e2option.lua b/generic/e2option.lua index 1ebcbd6..e5af076 100644 --- a/generic/e2option.lua +++ b/generic/e2option.lua @@ -29,7 +29,7 @@ module("e2option", package.seeall) require("e2lib") require("e2util") require("collection") -require("plugin") +local plugin = require("plugin") local err = require("err") -- Parsing of command-line options diff --git a/local/e2tool.lua b/local/e2tool.lua index 52688b4..b2124ec 100644 --- a/local/e2tool.lua +++ b/local/e2tool.lua @@ -42,7 +42,7 @@ require("svn") require("cache") local tools = require("tools") require("environment") -require("plugin") +local plugin = require("plugin") local url = require("url") local hash = require("hash") require("e2util")