diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2019-02-21 21:51:55 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2019-02-21 21:53:25 +0100 |
commit | 442873a7b80761f195f9cf280637d09aead4d589 (patch) | |
tree | 1d2e9a489bcc0d08ab7862a3f3dba654cf0201b5 /src/Makefile_Elua.am | |
parent | 41f0ebb52bfc6244032a2d33d7952518e2522667 (diff) | |
download | efl-442873a7b80761f195f9cf280637d09aead4d589.tar.gz |
tests: fix elua test with autotools
For one, TESTS_SRC_DIR was missing even though it's present in
meson. For two, top_builddir/top_srcdir are relative paths, which
means the chdir added earlier would result in a wrong apps dir
being pointed to; fix that by making all paths passed into the
tests source absolute.
Diffstat (limited to 'src/Makefile_Elua.am')
-rw-r--r-- | src/Makefile_Elua.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile_Elua.am b/src/Makefile_Elua.am index bc2513f903..5b1004b884 100644 --- a/src/Makefile_Elua.am +++ b/src/Makefile_Elua.am @@ -123,13 +123,14 @@ tests/elua/elua_suite.c \ tests/elua/elua_suite.h tests_elua_elua_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ --DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elua\" \ +-DTESTS_BUILD_DIR=\"$(abs_top_builddir)/src/tests/elua\" \ +-DTESTS_SRC_DIR=\"$(abs_top_srcdir)/src/tests/elua\" \ -DPACKAGE_DATA_DIR=\"$(top_srcdir)/src/tests/elua\" \ -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ -DELUA_BINDINGS_DIR=\"$(ELUA_BINDINGS_DIR)\" \ -DELUA_CORE_DIR=\"$(ELUA_CORE_DIR)\" \ -DELUA_MODULES_DIR=\"$(ELUA_MODULES_DIR)\" \ --DELUA_APPS_DIR=\"$(top_srcdir)/src/tests/elua/data/apps\" \ +-DELUA_APPS_DIR=\"$(abs_top_srcdir)/src/tests/elua/data/apps\" \ @CHECK_CFLAGS@ \ @ELUA_CFLAGS@ |