diff options
author | Steven Barth <steven@midlink.org> | 2008-04-05 18:35:33 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-05 18:35:33 +0000 |
commit | 9ba8d2aea994c832316f111354668f52de831043 (patch) | |
tree | 38dbb506c91f71486fef95dc98620c703c7347e0 /src/ffluci/config.lua | |
parent | 348dc7926806ce4cfe8a5bf8a9f63903469e53c8 (diff) |
* Remove ffluci.util.__file__ as it relies on debug information
* Added ffluci.debug for things that rely on debug information
* Fixed a bug regarding path detection when Luci is bytecompiled
Diffstat (limited to 'src/ffluci/config.lua')
-rw-r--r-- | src/ffluci/config.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ffluci/config.lua b/src/ffluci/config.lua index 8b94db8089..8b1a73dc7e 100644 --- a/src/ffluci/config.lua +++ b/src/ffluci/config.lua @@ -28,6 +28,10 @@ limitations under the License. module("ffluci.config", package.seeall) require("ffluci.model.uci") require("ffluci.util") +require("ffluci.debug") + +-- Our path (wtf Lua lacks __file__ support) +path = ffluci.debug.path -- Warning! This is only for fallback and compatibility purporses! -- main = {} |