Skip to content
Snippets Groups Projects
Commit 08224cd2 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[meson] Fix 'iwyu' target for meson >= 0.57

The run_target() function requires an absolute path in meson >= 0.57.
parent c8828c26
No related branches found
No related tags found
Loading
......@@ -14,8 +14,10 @@ emper_dependencies = [thread_dep, uring_dep]
boost_thread_dep = dependency('boost', modules : ['thread'], required: false)
tools_dir = join_paths(meson.source_root(), 'tools')
run_target('iwyu',
command: 'tools/check-iwyu')
command: join_paths(tools_dir, 'check-iwyu'))
conf_data = configuration_data()
option_urcu = get_option('userspace_rcu')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment