summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-22 10:27:01 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-22 10:27:01 +0000
commit522aa2e6c99f10e329992b296a2af6cbe6ef7f66 (patch)
treea6d055662cc8c1da9664d44b40ed3b636ed027b6
parent0b57fe78f64a087455237b2c8e01b738d68da98d (diff)
downloadrockbox-522aa2e6c99f10e329992b296a2af6cbe6ef7f66.tar.gz
rockbox-522aa2e6c99f10e329992b296a2af6cbe6ef7f66.zip
Fix the 'cannot create /.../apps/plugins/lua/actions.lua: Directory nonexistent' error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21027 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/lua/lua.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/lua.make b/apps/plugins/lua/lua.make
index 4a3690c8e1..45d6739f25 100644
--- a/apps/plugins/lua/lua.make
+++ b/apps/plugins/lua/lua.make
@@ -32,7 +32,7 @@ endif
32 32
33$(LUA_BUILDDIR)/lua.rock: $(LUA_OBJ) $(LUA_BUILDDIR)/actions.lua 33$(LUA_BUILDDIR)/lua.rock: $(LUA_OBJ) $(LUA_BUILDDIR)/actions.lua
34 34
35$(LUA_BUILDDIR)/actions.lua: 35$(LUA_BUILDDIR)/actions.lua: $(LUA_OBJ)
36 $(call PRINTS,GEN $(@F))$(LUA_SRCDIR)/action_helper.pl $(LUA_SRCDIR) > $@ 36 $(call PRINTS,GEN $(@F))$(LUA_SRCDIR)/action_helper.pl $(LUA_SRCDIR) > $@
37 37
38$(LUA_BUILDDIR)/lua.refmap: $(LUA_OBJ) 38$(LUA_BUILDDIR)/lua.refmap: $(LUA_OBJ)