summaryrefslogtreecommitdiffstats
path: root/tools/lua/patches/200-lua-path.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-22 18:10:23 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-22 18:10:23 +0000
commit9cbba08f01e6cbe03b3c03dd14c16ade5c75fe7e (patch)
tree91b892df861afeed191347896d3130d59d41410f /tools/lua/patches/200-lua-path.patch
parent3d7b088997a372140d946c7e2ee9fdd3be9a0ee4 (diff)
merge host build of lua from tools/ into package/lua/Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14622 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/lua/patches/200-lua-path.patch')
-rw-r--r--tools/lua/patches/200-lua-path.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/lua/patches/200-lua-path.patch b/tools/lua/patches/200-lua-path.patch
deleted file mode 100644
index 054457744..000000000
--- a/tools/lua/patches/200-lua-path.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/src/luaconf.h
-+++ b/src/luaconf.h
-@@ -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"