From 38de9074ff1effefa08bfc71471a97cd0658c10c Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Thu, 19 Apr 2018 00:11:14 -0400 Subject: Attempts to build zlib, libressl, dropbear, and... openssh with musl using the host's toolchain. I'm going to be moving to a toolchain specific to this system. Also changed how the kernel is installed, so it makes more sense. Fixed missing sources for many projects --- scripts/vim.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/vim.sh') diff --git a/scripts/vim.sh b/scripts/vim.sh index e2b4d14..5e401ac 100644 --- a/scripts/vim.sh +++ b/scripts/vim.sh @@ -1,13 +1,13 @@ #!/bin/sh . ./.vars export DESTDIR=$prefix -VERSION=8.0.1298 -BUILD_DIR="${build_dir}/vim-$VERSION" +VERSION=8.0.586 +BUILD_DIR="${build_dir}/vim80" if ! [ -d "$BUILD_DIR" ] ; then cd "$build_dir" - tar xfzv ${dist_dir}/vim-$VERSION.tar.gz + tar xfjv ${dist_dir}/vim-$VERSION.tar.bz2 fi -cd "${build_dir}/vim-$VERSION" +cd "$BUILD_DIR" export CC=musl-gcc export LDFLAGS="-static" export DESTDIR="$prefix" -- cgit v1.2.3