From: John Marshall Date: Wed, 24 Jun 2020 09:57:26 +0000 (+0100) Subject: build: remove unnecessary environment variables X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~8^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=21501c7318f96b849fda7cf15dc0dfa49cbfa061;p=babl.git build: remove unnecessary environment variables --- diff --git a/tests/meson.build b/tests/meson.build index 8be32f7..5c68a78 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -34,16 +34,14 @@ if platform_unix endif test_env = environment() -test_env.prepend('LD_LIBRARY_PATH', babl_library_build_dir) -test_env.set('GI_TYPELIB_PATH', babl_library_build_dir) test_env.set('BABL_PATH', babl_extensions_build_dir) + foreach test_name : test_names - test = executable( - test_name, + test = executable(test_name, test_name + '.c', - include_directories: [ rootInclude, bablInclude, ], - link_with: [ babl, ], - dependencies: [ thread, ], + include_directories: [rootInclude, bablInclude], + link_with: babl, + dependencies: thread, export_dynamic: true, install: false, )