summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-10 22:16:09 +0200
committerLinus Groh <mail@linusgroh.de>2021-05-11 13:13:08 +0100
commit659c22e17e24399a6dd0f9248fba5c3b6e5e7b13 (patch)
treed99bc27548cbe9e18498f6e4c24594cef92bb2ef /Ports
parent6e2d59b49f26b99c91bb62fa60c1796ad061bdfe (diff)
downloadserenity-659c22e17e24399a6dd0f9248fba5c3b6e5e7b13.zip
Ports: Add missing dependency for vim
The vim port links against gettext when it's available so we should add it as a dependency in the package.sh script.
Diffstat (limited to 'Ports')
-rwxr-xr-xPorts/vim/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/vim/package.sh b/Ports/vim/package.sh
index 12b4670ca1..27eccdc484 100755
--- a/Ports/vim/package.sh
+++ b/Ports/vim/package.sh
@@ -6,7 +6,7 @@ useconfigure="true"
files="https://github.com/vim/vim/archive/refs/tags/v${version}.tar.gz vim-v${version}.tar.gz 47613400943bbf3e110c38e8c4923b9e51c1d63d9774313820e1d9b4c4bb9e11"
auth_type=sha256
configopts="--with-tlib=tinfo --with-features=normal"
-depends="ncurses"
+depends="ncurses gettext"
export vim_cv_getcwd_broken=no
export vim_cv_memmove_handles_overlap=yes