From 44874e117b479da211109cc3dda3aaf0ebfa093a Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 26 Feb 2014 10:22:59 +0000 Subject: [PATCH] Disable netbeans for vim --- pkgs/vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/vim b/pkgs/vim index 911e392..7b0ce30 100644 --- a/pkgs/vim +++ b/pkgs/vim @@ -14,7 +14,7 @@ build() { cd src/vim74 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 + --disable-nls --disable-netbeans || return 1 make -j$nprocs || return 1 cd - }