From: Tobias Ulmer Date: Thu, 6 Sep 2012 10:57:07 +0000 (+0200) Subject: Do not set package.(c)path, lua does that for us X-Git-Tag: e2factory-2.3.13rc1~113 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=de7827f95754a2f5c8fae9326d693e62bdce8ca0;p=e2factory.git Do not set package.(c)path, lua does that for us Signed-off-by: Tobias Ulmer --- diff --git a/global/e2-root.lua.in b/global/e2-root.lua.in index 8d6e4c7..3a500b6 100644 --- a/global/e2-root.lua.in +++ b/global/e2-root.lua.in @@ -25,9 +25,6 @@ along with this program. If not, see . ]] -package.path = "@LIBDIR@/?.lua" -package.cpath = "@LIBDIR@/?.so" - env_tool = "@ENV_TOOL@" chroot_tool = "@CHROOT_TOOL@" tar_tool = "@TAR_TOOL@" diff --git a/global/e2.lua.in b/global/e2.lua.in index bcb9870..549b01f 100644 --- a/global/e2.lua.in +++ b/global/e2.lua.in @@ -25,9 +25,6 @@ along with this program. If not, see . ]] -package.path = "@LIBDIR@/?.lua" -package.cpath = "@LIBDIR@/?.so" - local e2lib = require("e2lib") local e2option = require("e2option") require("buildconfig")