summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-04-23 17:28:58 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-04-24 15:52:47 +0200
commite9c49d0f70e9052ff40968ecfb43d89442a65aec (patch)
treeafb1f286012a24e2f80afc77de5598278a02546c
parentaf4c6df7bb9e7ce7844b7ff00a1175b72d0fb7c9 (diff)
downloadefl-e9c49d0f70e9052ff40968ecfb43d89442a65aec.tar.gz
meson: do not use the variable name env in mono
env is used for the program env, and should not be used in any other form here. Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es> Differential Revision: https://phab.enlightenment.org/D8690
-rw-r--r--src/tests/efl_mono/meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tests/efl_mono/meson.build b/src/tests/efl_mono/meson.build
index f13b9a3b48..abd497c376 100644
--- a/src/tests/efl_mono/meson.build
+++ b/src/tests/efl_mono/meson.build
@@ -67,11 +67,11 @@ efl_mono_suite = executable('efl-mono-suite',
cs_args : extra_cs_args
)
-env = environment()
-env.set('MONO_PATH', efl_mono_test_suite_path )
+env_mono = environment()
+env_mono.set('MONO_PATH', efl_mono_test_suite_path )
if (cs_is_dotnet)
-env.set('LD_LIBRARY_PATH', efl_mono_test_suite_path )
+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',
@@ -108,9 +108,9 @@ foreach config : config_libs
load_lib += repaired_path+':'
endforeach
-env.set('LD_LIBRARY_PATH', load_lib)
+env_mono.set('LD_LIBRARY_PATH', load_lib)
test('efl-mono-suite',
efl_mono_suite,
- env : env
+ env : env_mono
)