stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e28bc49bc6e8401622a2303fbf18133039fd302a
commit e28bc49bc6e8401622a2303fbf18133039fd302a Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Mon Jul 18 15:28:03 2016 +0200 tests: eina_cxx: make sure simple.eo gets disted in all cases If we turn on release mode simple.eo did not land in the tarball as it was behind the EFL_ENABLE_TESTS condition. We now dist it in all cases. --- src/Makefile_Cxx.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Makefile_Cxx.am b/src/Makefile_Cxx.am index 5a8f62b..2420845 100644 --- a/src/Makefile_Cxx.am +++ b/src/Makefile_Cxx.am @@ -237,9 +237,6 @@ tests_eina_cxx_eina_cxx_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ tests_eina_cxx_eina_cxx_suite_LDADD = @CHECK_LIBS@ @USE_EINA_LIBS@ @USE_EO_LIBS@ tests_eina_cxx_eina_cxx_suite_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ @USE_EO_INTERNAL_LIBS@ -EXTRA_DIST2 += \ -tests/eina_cxx/simple.eo - ### Tests for ecore check_PROGRAMS += tests/ecore_cxx/ecore_cxx_suite tests/ecore_cxx/cxx_compile_test @@ -353,4 +350,8 @@ tests_elementary_cxx_cxx_compile_test_LDADD = @CHECK_LIBS@ @USE_ELEMENTARY_LIBS@ tests_elementary_cxx_cxx_compile_test_DEPENDENCIES = @USE_ELEMENTARY_INTERNAL_LIBS@ endif + +EXTRA_DIST2 += \ +tests/eina_cxx/simple.eo + endif --