Skip to content

Commit 3001e9b

Browse files
committed
build: Remove unused variables
Fallout from bafbbe8
1 parent ed9f8ce commit 3001e9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

completion/meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ else
1414
message('fish not found: using', get_option('prefix') / fishcompletionsdir, 'as a fallback install directory')
1515
endif
1616

17-
completion_bash = custom_target('bash-completion',
17+
custom_target('bash-completion',
1818
capture: true,
1919
command: [generate_completions_program, meson.global_source_root() / 'src', 'bash'],
2020
depends: [toolbox_go],
2121
install: true,
2222
install_dir: bashcompletionsdir,
2323
output: 'toolbox')
2424

25-
completion_zsh = custom_target('zsh-completion',
25+
custom_target('zsh-completion',
2626
capture: true,
2727
command: [generate_completions_program, meson.global_source_root() / 'src', 'zsh'],
2828
depends: [toolbox_go],
2929
install: true,
3030
install_dir: get_option('datadir') / 'zsh' / 'site-functions',
3131
output: '_toolbox')
3232

33-
completion_fish = custom_target('fish-completion',
33+
custom_target('fish-completion',
3434
capture: true,
3535
command: [generate_completions_program, meson.global_source_root() / 'src', 'fish'],
3636
depends: [toolbox_go],

0 commit comments

Comments
 (0)