mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
11 lines
338 B
Meson
11 lines
338 B
Meson
bashcompdir = get_option('bashcompdir')
|
|
if bashcompdir == ''
|
|
bashcomp = dependency('bash-completion', required: get_option(
|
|
'bash_completion'))
|
|
if bashcomp.found()
|
|
bashcompdir = bashcomp.get_pkgconfig_variable('completionsdir')
|
|
else
|
|
warning('Will not install bash completion due to missing dependencies!')
|
|
endif
|
|
endif
|