summaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2024-03-10 10:24:21 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2024-03-10 10:28:11 +0200
commitfdce40af926884c31d6a8a821808061153a53750 (patch)
tree28e26f56e606ba0269f7256186c18e5186f639bc /guile
parent80745cbe295051d2f8fa7bfa84cfa6017bd848e8 (diff)
guile: separate guile load/extensions path
Diffstat (limited to 'guile')
-rw-r--r--guile/tests/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/guile/tests/meson.build b/guile/tests/meson.build
index 78868ca..07b3790 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