From: Eneas U de Queiroz Date: Wed, 6 Oct 2021 19:26:23 +0000 (-0300) Subject: openblas: avoid using make -j when building X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=bf99bfbadb22d6a60c8699f48af1521b956c35e6;p=openwrt-packages.git openblas: avoid using make -j when building Set MAKE_NB_JOBS=-1 so that no -j parameter is passed to make when building the package, honoring the parent make's setting. Signed-off-by: Eneas U de Queiroz --- diff --git a/libs/openblas/Makefile b/libs/openblas/Makefile index bc28e79f6..86c507900 100644 --- a/libs/openblas/Makefile +++ b/libs/openblas/Makefile @@ -81,6 +81,7 @@ MAKE_FLAGS += \ HOSTCC=$(HOSTCC_NOCACHE) \ CROSS_SUFFIX=$(TARGET_CROSS) \ BINARY=$(OPENBLAS_BINARY) \ + MAKE_NB_JOBS=-1 \ NUM_THREADS=2 \ PREFIX=/usr \ COMMON_OPT="" \