elua: add checkme

This commit is contained in:
Daniel Kolesa 2014-12-11 16:41:24 +00:00
parent feecbd409c
commit aa6f9ea4a9
4 changed files with 10 additions and 2 deletions

View File

@ -112,3 +112,9 @@ ethumb_clientfilesdir = $(datadir)/ethumb_client
ethumb_clientfiles_DATA = ethumb_client/checkme
EXTRA_DIST += $(ethumb_clientfiles_DATA)
endif
########################################################################
# Elua
eluafilesdir = $(datadir)/elua
eluafiles_DATA = elua/checkme
EXTRA_DIST += $(eluafiles_DATA)

2
data/elua/checkme Normal file
View File

@ -0,0 +1,2 @@
This is just a test file used to help eeze determine its prefix
location.

View File

@ -457,7 +457,7 @@ elua_main(lua_State *L)
luaL_openlibs(L);
elua_prefix = eina_prefix_new(elua_progname, elua_main, "ELUA", "elua", NULL,
elua_prefix = eina_prefix_new(elua_progname, elua_main, "ELUA", "elua", "checkme",
PACKAGE_BIN_DIR, "", PACKAGE_DATA_DIR,
LOCALE_DIR);

View File

@ -25,7 +25,7 @@ elua_init(void)
eina_log_timing(_elua_log_dom, EINA_LOG_STATE_STOP, EINA_LOG_STATE_INIT);
INF("elua init");
_elua_pfx = eina_prefix_new(NULL, elua_init, "ELUA", "elua", NULL,
_elua_pfx = eina_prefix_new(NULL, elua_init, "ELUA", "elua", "checkme",
PACKAGE_BIN_DIR, "", PACKAGE_DATA_DIR,
LOCALE_DIR);