diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-01 17:01:22 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-01 17:01:22 +0000 |
| commit | 9bff845b49e277af46d6b7a09bb111472f3d3f49 (patch) | |
| tree | 8277c6a4b2ac95c231ad249b63bf30ab11869a37 /apps/plugins/lua/rockconf.h | |
| parent | d5180f7870643e19c37b62909d0e0c545cc23337 (diff) | |
| download | rockbox-9bff845b49e277af46d6b7a09bb111472f3d3f49.zip rockbox-9bff845b49e277af46d6b7a09bb111472f3d3f49.tar.gz rockbox-9bff845b49e277af46d6b7a09bb111472f3d3f49.tar.bz2 rockbox-9bff845b49e277af46d6b7a09bb111472f3d3f49.tar.xz | |
Lua: because Rockbox doesn't support any current working directory functionality, 'hack' loadlib so it replace '$' in LUA_PATH_DEFAULT with the directory wherein the current script is.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21595 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rockconf.h')
| -rw-r--r-- | apps/plugins/lua/rockconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/rockconf.h b/apps/plugins/lua/rockconf.h index 40f7d74..b72ebea 100644 --- a/apps/plugins/lua/rockconf.h +++ b/apps/plugins/lua/rockconf.h @@ -29,7 +29,7 @@ #undef luai_jmpbuf #undef LUA_PATH_DEFAULT -#define LUA_PATH_DEFAULT "./?.lua;" VIEWERS_DIR"/?.lua;" +#define LUA_PATH_DEFAULT "$/?.lua;" VIEWERS_DIR"/?.lua;" #ifndef SIMULATOR #include "../../codecs/lib/setjmp.h" |