Skip to content

Commit df77b58

Browse files
committed
neovim: add gettext-dev
Fixes: [ 50%] Building C object src/nvim/CMakeFiles/nvim.dir/eval.c.o /vim/neovim-neovim/neovim-master/src/nvim/eval.c: In function 'f_foldtext': /vim/neovim-neovim/neovim-master/src/nvim/eval.c:8717:11: warning: implicit declaration of function 'ngettext' [-Wimplicit-function-declaration] txt = ngettext("+-%s%3ld line: ", "+-%s%3ld lines: ", count); ^~~~~~~~ /vim/neovim-neovim/neovim-master/src/nvim/eval.c:8717:9: warning: assignment makes pointer from integer without a cast [-Wint-conversion] txt = ngettext("+-%s%3ld line: ", "+-%s%3ld lines: ", count); ^
1 parent 8959745 commit df77b58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/install_vim.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ EOF
142142
# Some of them will be installed already, but it is a good reference for
143143
# what is required.
144144
# luajit is required with Neomvim 0.2.1+ (previously only during build).
145-
apk add libuv \
145+
apk add gettext \
146+
libuv \
146147
libtermkey \
147148
libvterm \
148149
luajit \
@@ -154,6 +155,7 @@ EOF
154155
ca-certificates \
155156
cmake \
156157
g++ \
158+
gettext-dev \
157159
gperf \
158160
libtool \
159161
libuv-dev \

0 commit comments

Comments
 (0)