app-vim/nvim-cmp: Replace 'echo' with ':;' in NOP

'echo' was abused to implement a no-operation (NOP) call in src_compile.
However that echo might have some implication like adding an empty line
into the compilation output. Dropping it in favor for ':;' instead which
is the usual style in other ebuilds.

Signed-off-by: Nils Freydank <nils.freydank@posteo.de>
This commit is contained in:
Nils Freydank 2022-09-20 09:47:02 +02:00
parent c1c80a2d59
commit a96b466efb
Signed by: nfr
GPG Key ID: 0F1DEAB2D36AD112

View File

@ -40,7 +40,7 @@ DOCS=( README.md )
src_compile(){
# Don't do anything. The Makefile runs only some linter for testing.
echo
:;
}
src_install(){