From 65aca7d84af1b741ac12d5cdf9f52afafd1348a2 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 23 Jun 2020 16:48:50 -0700 Subject: [PATCH] let's not force the build server to swap out when building releases --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7a8e4f40a..f072b80f8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ TIMESTAMP=$(shell date +"%Y%m%d%H%M") .PHONY: all all: setup - cd ${BUILDDIR} && $(MAKE) -j$(shell getconf _NPROCESSORS_ONLN) VERBOSE=1 + cd ${BUILDDIR} && $(MAKE) -j4 VERBOSE=1 setup: mkdir -p ${BUILDDIR} && cd ${BUILDDIR} && cmake .. -DCMAKE_BUILD_TYPE=Release ${CMAKE_ARGS}