From 4b1cd7ad1e1463a45b444d066b49574a9b6ad04a Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sun, 22 Apr 2018 12:33:52 -0400 Subject: Sweeping changes, switching to musl-cross-make Updated busybox-config to reflect the toolchain change Nginx and Openssh build and are now apart of the system. Runit is included, still need to install configuration files --- scripts/vim.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'scripts/vim.sh') diff --git a/scripts/vim.sh b/scripts/vim.sh index 5e401ac..cf611f9 100644 --- a/scripts/vim.sh +++ b/scripts/vim.sh @@ -8,10 +8,14 @@ if ! [ -d "$BUILD_DIR" ] ; then tar xfjv ${dist_dir}/vim-$VERSION.tar.bz2 fi cd "$BUILD_DIR" -export CC=musl-gcc export LDFLAGS="-static" export DESTDIR="$prefix" make distclean || echo "" -./configure --prefix=/usr --with-tlib=ncurses --with-local-dir=$prefix/usr +./configure --prefix=/usr \ + --host=$BUILD_TGT \ + --with-tlib=ncurses \ + --enable-gui=no \ + --without-x \ + --with-local-dir=$prefix/usr make -j$(numproc) make install -- cgit v1.2.3