Skip to content
Snippets Groups Projects
Verified Commit d03ce565 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix cmatrix

parent 673e8ec4
No related branches found
No related tags found
No related merge requests found
...@@ -14,10 +14,15 @@ function recipe_update { ...@@ -14,10 +14,15 @@ function recipe_update {
function recipe_build { function recipe_build {
sysroot="$(realpath ../sysroot)" sysroot="$(realpath ../sysroot)"
export LDFLAGS="-L$sysroot/lib" export LDFLAGS="-L$sysroot/lib -static"
export CPPFLAGS="-I$sysroot/include -I$sysroot/include/ncurses" export CPPFLAGS="-I$sysroot/include -I$sysroot/include/ncurses"
autoreconf -i autoreconf -i
./configure --build=${BUILD} --host=${HOST} --prefix=/ --without-fonts ./configure \
--build=${BUILD} \
--host=${HOST} \
--prefix=/ \
--without-fonts
sed -i'' -e 's|#define USE_TIOCSTI 1|/* #undef USE_TIOCSTI */|g' config.h
make -j"$(nproc)" make -j"$(nproc)"
skip=1 skip=1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment