diff options
| author | William Wilgus <me.theuser@yahoo.com> | 2018-12-17 09:36:52 -0600 |
|---|---|---|
| committer | William Wilgus <me.theuser@yahoo.com> | 2018-12-17 09:41:15 -0600 |
| commit | 28f91ff3dc6e0d7f98c793d022e405781f292eb6 (patch) | |
| tree | ccacedf2de2a973dfa5061d2a41020982b979131 /apps/plugins/lua/lua.make | |
| parent | 622f3f2497a5910e32b0f72beebb216433c97b60 (diff) | |
| download | rockbox-28f91ff3dc6e0d7f98c793d022e405781f292eb6.zip rockbox-28f91ff3dc6e0d7f98c793d022e405781f292eb6.tar.gz rockbox-28f91ff3dc6e0d7f98c793d022e405781f292eb6.tar.bz2 rockbox-28f91ff3dc6e0d7f98c793d022e405781f292eb6.tar.xz | |
Lua Fix settings_helper for the gigaBeastS
the gigabeatS has an embedded struct that needs to be parsed
Change-Id: I88c9101afaaa95182f37ade1410cccb4fb768e33
Diffstat (limited to 'apps/plugins/lua/lua.make')
| -rw-r--r-- | apps/plugins/lua/lua.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/lua.make b/apps/plugins/lua/lua.make index ef9705a..0eb3c5a 100644 --- a/apps/plugins/lua/lua.make +++ b/apps/plugins/lua/lua.make @@ -41,7 +41,7 @@ $(LUA_BUILDDIR)/actions.lua: $(LUA_OBJ) $(LUA_SRCDIR)/action_helper.pl $(call PRINTS,GEN $(@F))$(CC) $(PLUGINFLAGS) $(INCLUDES) -E $(APPSDIR)/plugins/lib/pluginlib_actions.h | $(LUA_SRCDIR)/action_helper.pl > $(LUA_BUILDDIR)/actions.lua $(LUA_BUILDDIR)/settings.lua: $(LUA_OBJ) $(LUA_SRCDIR)/settings_helper.pl - $(SILENT)$(CC) $(INCLUDES) -E $(TARGET) $(CFLAGS) -include plugin.h -include cuesheet.h - < /dev/null | $(LUA_SRCDIR)/settings_helper.pl | \ + $(SILENT)$(CC) $(INCLUDES) -E -P $(TARGET) $(CFLAGS) -include plugin.h -include cuesheet.h - < /dev/null | $(LUA_SRCDIR)/settings_helper.pl | \ $(CC) $(INCLUDES) $(TARGET) $(CFLAGS) -S -x c -include config.h -include plugin.h -o $(LUA_BUILDDIR)/settings_helper.s - $(call PRINTS,GEN $(@F))$(LUA_SRCDIR)/settings_helper.pl < $(LUA_BUILDDIR)/settings_helper.s > $(LUA_BUILDDIR)/settings.lua |