From 4a73f69d104d037c0aa3873a0cd1536587080eee Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 21 Jan 2020 23:05:43 -0500 Subject: 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index ca0c791f..54351812 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) -- cgit v1.2.3-54-g00ecf