diff options
author | Steven Barth <steven@midlink.org> | 2008-05-06 20:44:45 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-06 20:44:45 +0000 |
commit | fc65325c174e13cc1a9329d154e74069257ebb12 (patch) | |
tree | 1c5813fa25f538989802eacf6fe45a2ed7b06867 /contrib | |
parent | 21bd8ca76deec06b8e4f4dc3bc2ea75c7f9c3260 (diff) |
* General code cleanup
* Removed unnecessary module dependencies
* Completed SGI abstraction
* Reworked ffluci.sgi.webuci
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package/lua-luci/patches/200-lua-path | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/package/lua-luci/patches/200-lua-path b/contrib/package/lua-luci/patches/200-lua-path new file mode 100644 index 000000000..62dd00e39 --- /dev/null +++ b/contrib/package/lua-luci/patches/200-lua-path @@ -0,0 +1,15 @@ +--- b/src/luaconf.h 2008-05-06 20:10:46.000000000 +0200 ++++ a/src/luaconf.h 2008-05-06 20:10:27.000000000 +0200 +@@ -95,9 +95,9 @@ + ".\\?.dll;" LUA_CDIR"?.dll;" LUA_CDIR"loadall.dll" + + #else +-#define LUA_ROOT "/usr/local/" +-#define LUA_LDIR LUA_ROOT "share/lua/5.1/" +-#define LUA_CDIR LUA_ROOT "lib/lua/5.1/" ++#define LUA_ROOT "/usr/" ++#define LUA_LDIR LUA_ROOT "share/lua/" ++#define LUA_CDIR LUA_ROOT "lib/lua/" + #define LUA_PATH_DEFAULT \ + "./?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \ + LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua" |