From f3877daac56c769eb4c9024ae538e61a69fce25c Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 8 Sep 2022 11:49:43 +0200 Subject: [PATCH] Ports: Build Quake in parallel Instead of overwriting the existing `-j` makeopt, we only append options. This brings the build time for the Quake port down from 24.3s to 4.4s on my machine. --- Ports/quake/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/quake/package.sh b/Ports/quake/package.sh index d7ee199c80..943bbab3fc 100755 --- a/Ports/quake/package.sh +++ b/Ports/quake/package.sh @@ -4,7 +4,7 @@ version=0.65 workdir=SerenityQuake-master useconfigure=false files="https://github.com/SerenityPorts/SerenityQuake/archive/master.tar.gz quake.tar.gz" -makeopts=("V=1" "SYMBOLS_ON=Y") +makeopts+=("V=1" "SYMBOLS_ON=Y") depends=("SDL2") launcher_name=Quake launcher_category=Games