Skip to content

Commit

Permalink
meson: fix bash_completion.get_variable() use
Browse files Browse the repository at this point in the history
Addresses: util-linux#1549
Signed-off-by: Karel Zak <kzak@redhat.com>
  • Loading branch information
karelzak committed Jan 4, 2022
1 parent ae478a8 commit caa8568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3230,12 +3230,12 @@ if bash_completion.found()
foreach completion : bashcompletions
install_data(
join_paths('bash-completion', completion),
install_dir : bash_completion.get_variable('completionsdir')
install_dir : bash_completion.get_variable(pkgconfig : 'completionsdir')
)
endforeach
foreach link_name, target : bashcompletionslinks
meson.add_install_script(meson_make_symlink,
target,
join_paths(bash_completion.get_variable('completionsdir'), link_name))
join_paths(bash_completion.get_variable(pkgconfig : 'completionsdir'), link_name))
endforeach
endif

0 comments on commit caa8568

Please sign in to comment.