bandaid OOM, ensure mkvtoolnix

This commit is contained in:
2025-12-22 09:21:09 -06:00
parent 200d4c4a6c
commit 87f65e48f4
4 changed files with 14 additions and 8 deletions

View File

@@ -925,7 +925,9 @@ meta_configure_build() {
"${configureFlags[@]}" \
"${addFlags[@]}" || return 1
# build
ccache make -j"${JOBS}" || return 1
# attempt to build twice since build can fail due to OOM
ccache make -j"${JOBS}" ||
ccache make -j"${JOBS}" || return 1
# install
local destdir="${PWD}/fb-local-install"
make -j"${JOBS}" DESTDIR="${destdir}" install || return 1