diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:17:02 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:17:02 -0500 |
commit | 66d4171655e0b93766c82f50ce06521f85b58222 (patch) | |
tree | 1b6d1cbcbc169e5cbb4e6ea6698ed91d82d7cc88 /chapter6/ncurses.sh | |
parent | 9d68d5da4115353816ab4f6b1c7a4f5db43576f9 (diff) | |
parent | 887bf450c01c511a3f6d048d3db78e8edfb21e8a (diff) |
Merge branch 'master' into chapter7
Diffstat (limited to 'chapter6/ncurses.sh')
-rw-r--r-- | chapter6/ncurses.sh | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/chapter6/ncurses.sh b/chapter6/ncurses.sh index 91ffa45..6320a9f 100644 --- a/chapter6/ncurses.sh +++ b/chapter6/ncurses.sh @@ -1,15 +1,17 @@ +#!/bin/bash + sed -i s/mawk// configure && mkdir build -pushd build > /dev/null +pushd build > /dev/null || exit 1 ../configure && make -C include && make -C progs tic && -popd > /dev/null +popd > /dev/null || exit 1 ./configure --prefix=/usr \ - --host=${LFS_TGT} \ - --build=$(./config.guess) \ + --host="${LFS_TGT}" \ + --build="$(./config.guess)" \ --mandir=/usr/share/man \ --with-manpage-format=normal \ --with-shared \ @@ -18,7 +20,7 @@ popd > /dev/null --without-normal \ --enable-widec && make && -make DESTDIR=${LFS} TIC_PATH=$(pwd)/build/progs/tic -j1 install && -echo "INPUT(-lncursesw)" > ${LFS}/usr/lib/libncurses.so && -mv -v ${LFS}/usr/lib/libncursesw.so.6* ${LFS}/lib && -ln -sfv ../../lib/$(readlink ${LFS}/usr/lib/libncursesw.so) ${LFS}/usr/lib/libncursesw.so +make DESTDIR="${LFS}" TIC_PATH="$(pwd)"/build/progs/tic -j1 install && +echo "INPUT(-lncursesw)" > "${LFS}"/usr/lib/libncurses.so && +mv -v "${LFS}"/usr/lib/libncursesw.so.6* "${LFS}"/lib && +ln -sfv ../../lib/"$(readlink "${LFS}"/usr/lib/libncursesw.so)" "${LFS}"/usr/lib/libncursesw.so |