fix freetype/harfbuzz circular dependency

This commit is contained in:
2026-02-07 13:57:40 -06:00
parent 8d9c670b6c
commit 09ea4e24fb
3 changed files with 28 additions and 14 deletions

View File

@@ -151,7 +151,7 @@ check_for_req_pkgs() {
for pkg in $(print_req_pkgs); do
# pkg_check has ${pkg} unexpanded
eval "pkg_check=\"${pkg_check}\""
${pkg_check} "${pkg}" >/dev/null 2>&1 || missing_pkgs+=("${pkg}")
${pkg_check} "${pkg}" &>/dev/null || missing_pkgs+=("${pkg}")
done
if [[ ${#missing_pkgs[@]} -gt 0 ]]; then