Skip to content

Commit

Permalink
guile: separate guile load/extensions path
Browse files Browse the repository at this point in the history
  • Loading branch information
djcb committed Mar 10, 2024
1 parent 80745cb commit fdce40a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guile/tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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()])

Expand All @@ -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
Expand Down

0 comments on commit fdce40a

Please sign in to comment.