vitorsousa pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=37941b757d75dc4847c081197e16689b5fe8eb1f
commit 37941b757d75dc4847c081197e16689b5fe8eb1f Author: Lauro Moura <[email protected]> Date: Fri May 31 16:58:19 2019 -0300 csharp: Fix testing under dotnet Summary: Fix LD_LIBRARY_PATH so it can still find the custom exports lib Reviewers: bu5hm4n, vitor.sousa, segfaultxavi, felipealmeida Reviewed By: vitor.sousa Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9020 --- src/tests/efl_mono/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tests/efl_mono/meson.build b/src/tests/efl_mono/meson.build index ac658b46d3..84a0c22515 100644 --- a/src/tests/efl_mono/meson.build +++ b/src/tests/efl_mono/meson.build @@ -79,7 +79,6 @@ env_mono = environment() env_mono.set('MONO_PATH', efl_mono_test_suite_path ) if (cs_is_dotnet) -env_mono.set('LD_LIBRARY_PATH', efl_mono_test_suite_path ) copy_prog = find_program(['cp', 'copy']) configure_file(input : 'efl-mono-suite.runtimeconfig.json', @@ -100,7 +99,7 @@ custom_target('copy_efl_mono_lib_dll', endif config_libs = ['eina', 'ecore', 'eo', 'efl', 'evas', 'eldbus', 'elementary'] -load_lib = '' +load_lib = efl_mono_test_suite_path + ':' foreach config : config_libs lib = get_variable(config+'_lib') --
