From 7f1e38daf928fe6d3f66e120c2a2553ccc957b57 Mon Sep 17 00:00:00 2001 From: Lauro Moura Date: Fri, 31 May 2019 16:58:19 -0300 Subject: [PATCH] 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 ac658b4..84a0c22 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') -- 2.7.4