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/ncurses.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/ncurses.sh') diff --git a/scripts/ncurses.sh b/scripts/ncurses.sh index b6b340e..3f12d93 100644 --- a/scripts/ncurses.sh +++ b/scripts/ncurses.sh @@ -8,10 +8,12 @@ if ! [ -d "$BUILD_DIR" ] ; then tar xfzv ${dist_dir}/ncurses-$VERSION.tar.gz fi cd "${build_dir}/ncurses-$VERSION" -export CC=musl-gcc export CLFAGS="-I$prefix/usr/include" export LDFLAGS="-static -L$prefix/usr/include" export DESTDIR="$prefix" -./configure --prefix=/usr --enable-static +./configure \ + --host=$BUILD_TGT \ + --prefix=/usr \ + --enable-static make -j$(numproc) make install -- cgit v1.2.3