From fdce40af926884c31d6a8a821808061153a53750 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 10 Mar 2024 10:24:21 +0200 Subject: [PATCH] guile: separate guile load/extensions path --- guile/tests/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guile/tests/meson.build b/guile/tests/meson.build index 78868cad..07b37905 100644 --- a/guile/tests/meson.build +++ b/guile/tests/meson.build @@ -18,8 +18,8 @@ # guile test; they don't work with ASAN. # if get_option('b_sanitize') == 'none' - guile_load_path=':'.join([ - join_paths(meson.project_source_root(), 'guile'), + guile_load_path = join_paths(meson.project_source_root(), 'guile') + guile_extensions_path = ':'.join([ join_paths(meson.project_build_root(), 'guile'), meson.current_build_dir()]) @@ -30,7 +30,7 @@ if get_option('b_sanitize') == 'none' cpp_args: [ '-DABS_SRCDIR="' + meson.current_source_dir() + '"', '-DGUILE_LOAD_PATH="' + guile_load_path + '"', - '-DGUILE_EXTENSIONS_PATH="' + guile_load_path + '"' + '-DGUILE_EXTENSIONS_PATH="' + guile_extensions_path + '"' ], dependencies: [glib_dep, lib_mu_dep])) else