zsh: Add missing flags to 'meson install'
Also start flag description with a lowercase letter.
This commit is contained in:
parent
05643006a7
commit
386fee2305
|
@ -215,9 +215,14 @@ local -a meson_commands=(
|
|||
local curcontext="$curcontext"
|
||||
local -a specs=(
|
||||
"$__meson_cd"
|
||||
'--no-rebuild[Do not rebuild before installing]'
|
||||
'--only-changed[Do not overwrite files that are older than the copied file]'
|
||||
'(--quiet -q)'{'--quiet','-q'}'[Do not print every file that was installed]'
|
||||
'--no-rebuild[do not rebuild before installing]'
|
||||
'--only-changed[do not overwrite files that are older than the copied file]'
|
||||
'(--quiet -q)'{'--quiet','-q'}'[do not print every file that was installed]'
|
||||
'--destdir[set or override DESTDIR environment]: :_directories'
|
||||
'(--dry-run -d)'{'--dry-run','-d'}'[do not actually install, only print logs]'
|
||||
'--skip-subprojects[do not install files from given subprojects]: : '
|
||||
'--tags[install only targets having one of the given tags]: :_values -s , tag devel runtime python-runtime man doc i18n typelib bin bin-devel tests systemtap'
|
||||
'--strip[strip targets even if strip option was not set during configure]'
|
||||
)
|
||||
_arguments \
|
||||
'(: -)'{'--help','-h'}'[show a help message and quit]' \
|
||||
|
|
Loading…
Reference in New Issue