aboutsummaryrefslogtreecommitdiffstats
path: root/package/lua/patches/200-lua-path.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-05-22 14:20:36 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-05-22 14:20:36 +0000
commit30eaf86b8cb31b1d4701dbcb960a821dcc5f8c53 (patch)
tree5d87b795c130a543db9101ba74c12d9068dd2d99 /package/lua/patches/200-lua-path.patch
parent1da5ed60ee8d8f30ace48d3aba5cb3457ca27575 (diff)
downloadupstream-30eaf86b8cb31b1d4701dbcb960a821dcc5f8c53.tar.gz
upstream-30eaf86b8cb31b1d4701dbcb960a821dcc5f8c53.tar.bz2
upstream-30eaf86b8cb31b1d4701dbcb960a821dcc5f8c53.zip
add updated lua patchset from Steven Barth (cyrus) as explained in http://lists.openwrt.org/pipermail/openwrt-devel/2008-May/002170.html
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11239 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua/patches/200-lua-path.patch')
-rw-r--r--package/lua/patches/200-lua-path.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/lua/patches/200-lua-path.patch b/package/lua/patches/200-lua-path.patch
new file mode 100644
index 0000000000..62dd00e399
--- /dev/null
+++ b/package/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"