diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2020-01-21 23:05:43 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2020-01-21 23:05:43 -0500 |
| commit | dcfb70c2dcfe873ea81cffebbfa35716ea9882c7 (patch) | |
| tree | ae0cd4042800a9ed47dc767466dbf04ab94f7d98 /meson.build | |
| parent | c63754bfdd02a92ff892dd47e25c35bfdb3de7ae (diff) | |
fish-completion: use the correct fallback directory
fish completions should never be installed to share/fish/completions/ as
that directory is reserved exclusively for completions shipped as part
of the fish source code.
Use the same vendor_completions.d/ directory which the default fish
configuration uses.
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 5769da35..500a133a 100644 --- a/meson.build +++ b/meson.build @@ -280,7 +280,7 @@ if get_option('fish-completions') if fish_comp.found() fish_install_dir = fish_comp.get_pkgconfig_variable('completionsdir') else - fish_install_dir = join_paths(datadir, 'fish', 'completions') + fish_install_dir = join_paths(datadir, 'fish', 'vendor_completions.d') endif install_data(fish_files, install_dir: fish_install_dir) |
