commit 4294764b61419e27a84d8c1f4688a397b57298f9 parent 08a4843e6d79efe273678dc4ad78a5d3c157c374 Author: sin <sin@2f30.org> Date: Wed, 26 Feb 2014 10:17:27 +0000 Disable GUI for vim Diffstat:
M | pkgs/vim | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pkgs/vim b/pkgs/vim @@ -12,7 +12,9 @@ unpack() { build() { cd src/vim74 - CC=x86_64-linux-musl-gcc LDFLAGS=-static ./configure --prefix=/ --enable-multibyte || return 1 + CC=x86_64-linux-musl-gcc CFLAGS="-I$libcroot/include" LDFLAGS="-L$libcroot/lib -static" ./configure --prefix=/ \ + --enable-multibyte --disable-gui --with-x=no \ + --disable-nls || return 1 make -j$nprocs || return 1 cd - }