From 9982bb4653e04bd4dcf14d328ae695e744e0ce57 Mon Sep 17 00:00:00 2001 From: Daniel Bermond Date: Sat, 20 Jun 2026 11:16:40 -0300 Subject: [PATCH] Cosmetic changes --- PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 2ea35c7..922ed8f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -26,9 +26,10 @@ build() { _jobs="$(nproc)" # may fail to compile on a high core count system - if [ "$_jobs" > "$_max_jobs" ] + # https://github.com/Netflix/vmaf/issues/1541 + if [ "$_jobs" -ge "$_max_jobs" ] then - local _jobs="$_max_jobs" + _jobs="$_max_jobs" printf '%s\n' "limiting the compilation jobs to ${_jobs}" fi