mirror of https://gitee.com/openkylin/libvirt.git
build: Drop execute permissions on virsh bash completion command
rpmlint complains about "script-without-shebang" due to the execute permissions on /usr/share/bash-completion/completions/vsh. Use INSTALL_DATA instead of INSTALL_SCRIPT to avoid the unnecessary execute permissions. Signed-off-by: Jim Fehlig <jfehlig@suse.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
e8d5eb0cde
commit
72ed254b38
|
@ -357,7 +357,7 @@ libvirt-guests.service: libvirt-guests.service.in $(top_builddir)/config.status
|
|||
if WITH_BASH_COMPLETION
|
||||
install-bash-completion:
|
||||
$(MKDIR_P) "$(DESTDIR)$(BASH_COMPLETIONS_DIR)"
|
||||
$(INSTALL_SCRIPT) $(srcdir)/bash-completion/vsh \
|
||||
$(INSTALL_DATA) $(srcdir)/bash-completion/vsh \
|
||||
"$(DESTDIR)$(BASH_COMPLETIONS_DIR)/vsh"
|
||||
( cd $(DESTDIR)$(BASH_COMPLETIONS_DIR) && \
|
||||
rm -f virsh virt-admin && \
|
||||
|
|
Loading…
Reference in New Issue