diff options
| author | Carlo Landmeter <clandmeter@gmail.com> | 2009-02-12 09:24:35 +0000 |
|---|---|---|
| committer | Carlo Landmeter <clandmeter@gmail.com> | 2009-02-12 09:24:35 +0000 |
| commit | dcd5b5be2cbd0a0505dc4b20fdeef4fef06ce8dc (patch) | |
| tree | 45febbc2fbb58b2cd8fd00e7a53ad5ffca134563 /extra/lua/lua-5.1-module_paths.patch | |
| parent | f9e132166ed98a4bf79f2defd8acbdf2315fe0e9 (diff) | |
| parent | a2e7b0043cd02246557d9743e4ca725ac0013b2e (diff) | |
| download | aports-dcd5b5be2cbd0a0505dc4b20fdeef4fef06ce8dc.tar.bz2 aports-dcd5b5be2cbd0a0505dc4b20fdeef4fef06ce8dc.tar.xz | |
Merge commit 'ncopa/master'
Diffstat (limited to 'extra/lua/lua-5.1-module_paths.patch')
| -rw-r--r-- | extra/lua/lua-5.1-module_paths.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/lua/lua-5.1-module_paths.patch b/extra/lua/lua-5.1-module_paths.patch new file mode 100644 index 00000000..29ac4c3b --- /dev/null +++ b/extra/lua/lua-5.1-module_paths.patch @@ -0,0 +1,30 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## src_luaconf.h.dpatch by John V. Belmonte <jbelmonte@debian.org> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Set Lua's default PATH and CPATH. + +@DPATCH@ +diff -urNad trunk~/src/luaconf.h trunk/src/luaconf.h +--- trunk~/src/luaconf.h 2006-02-10 12:44:06.000000000 -0500 ++++ trunk/src/luaconf.h 2006-02-17 21:32:55.000000000 -0500 +@@ -83,13 +83,17 @@ + + #else + #define LUA_ROOT "/usr/local/" ++#define LUA_ROOT2 "/usr/" + #define LUA_LDIR LUA_ROOT "share/lua/5.1/" ++#define LUA_LDIR2 LUA_ROOT2 "share/lua/5.1/" + #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" ++#define LUA_CDIR2 LUA_ROOT2 "lib/lua/5.1/" + #define LUA_PATH_DEFAULT \ + "./?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \ +- LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua" ++ LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua;" \ ++ LUA_LDIR2"?.lua;" LUA_LDIR2"?/init.lua" + #define LUA_CPATH_DEFAULT \ +- "./?.so;" LUA_CDIR"?.so;" LUA_CDIR"loadall.so" ++ "./?.so;" LUA_CDIR"?.so;" LUA_CDIR2"?.so;" LUA_CDIR"loadall.so" + #endif + + |
