Skip to content

Commit

Permalink
meson: Fix devkit build when subproject
Browse files Browse the repository at this point in the history
Where Meson catches us trying to use a file outside the subproject.
  • Loading branch information
oleavr committed Apr 25, 2024
1 parent 4e39c2a commit 3df08e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ if get_option('devkits').length() != 0
if get_option('default_library') != 'static'
error('Devkits can only be generated from static libraries')
endif
mkdevkit = [python, files(releng / 'mkdevkit.py')]
mkdevkit = [python, releng / 'mkdevkit.py']
uninstalled_dir = meson.global_build_root() / 'meson-uninstalled'
devkit_options = [
'--cc', '>>>', cc.cmd_array(), '<<<',
Expand Down

0 comments on commit 3df08e8

Please sign in to comment.