summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauro Moura <lauromoura@expertisesolutions.com.br>2019-05-31 16:58:19 -0300
committerVitor Sousa <vitorsousa@expertisesolutions.com.br>2019-05-31 17:28:00 -0300
commit37941b757d75dc4847c081197e16689b5fe8eb1f (patch)
tree07e9e6a209253da58b7a1f86bc396ff92e61b9f7
parenta5467e1aec3ea793c9e8c215379389c4f5dcac37 (diff)
downloadefl-37941b757d75dc4847c081197e16689b5fe8eb1f.tar.gz
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
-rw-r--r--src/tests/efl_mono/meson.build3
1 files changed, 1 insertions, 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')