diff options
author | Steven Barth <steven@midlink.org> | 2008-05-30 18:38:14 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-30 18:38:14 +0000 |
commit | 6393d316cd61e2089b2d7a03884e831151468d5e (patch) | |
tree | 6da3edc7d8772646e48dfcfb5387706ebf7adf98 /tools/lua/patches/200-lua-path.patch | |
parent | a4c21e98d14d657e9caf447634845e8779b191c9 (diff) | |
download | upstream-6393d316cd61e2089b2d7a03884e831151468d5e.tar.gz upstream-6393d316cd61e2089b2d7a03884e831151468d5e.tar.bz2 upstream-6393d316cd61e2089b2d7a03884e831151468d5e.zip |
Added lua (lua host bytecode-compiler) to tools/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11304 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/lua/patches/200-lua-path.patch')
-rw-r--r-- | tools/lua/patches/200-lua-path.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/lua/patches/200-lua-path.patch b/tools/lua/patches/200-lua-path.patch new file mode 100644 index 0000000000..62dd00e399 --- /dev/null +++ b/tools/lua/patches/200-lua-path.patch @@ -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" |