diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 21:02:28 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 21:03:41 +0100 |
commit | 39190402e4dfbb41b61b34c0afd80d13a631b2d3 (patch) | |
tree | 985badd4edd1ffd482e6d533887970b85262f0bb /Ports/vim | |
parent | 9c35feb14cfcdbb6cbfc8ce46aecacf6e5a50cad (diff) | |
download | serenity-39190402e4dfbb41b61b34c0afd80d13a631b2d3.zip |
Ports: Upgrade the vim port to build with more features :^)
Previously we were only able to build with --with-features=small.
Thanks to all the compatibility work done in the kernel and LibC over
the last couple of months, we can now build --with-features=normal.
It's not the biggest deal in the world, but it's pretty nice to see
this kind of progress!
Diffstat (limited to 'Ports/vim')
-rwxr-xr-x | Ports/vim/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/vim/package.sh b/Ports/vim/package.sh index 6843e00047..45b9c2d8d0 100755 --- a/Ports/vim/package.sh +++ b/Ports/vim/package.sh @@ -5,7 +5,7 @@ workdir=vim-master useconfigure="true" curlopts="-L" files="https://github.com/vim/vim/archive/master.tar.gz vim-git.tar.gz" -configopts="--with-tlib=ncurses --with-features=small" +configopts="--with-tlib=ncurses --with-features=normal" depends="ncurses" export vim_cv_getcwd_broken=no |