From: Martin Schiller Date: Thu, 16 Nov 2023 13:10:46 +0000 (+0100) Subject: u-boot.mk: do not force parallel build X-Git-Tag: v24.10.0-rc1~3739 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a64a482a24f79d246aea43191157aaf318622b8;p=thirdparty%2Fopenwrt.git u-boot.mk: do not force parallel build Some patched u-boots may have problems with parallel build. Do not enforce parallel build here so one can set PKG_BUILD_PARALLEL:=0 in the specific u-boot Makefile also before including the u-boot.mk. Signed-off-by: Martin Schiller --- diff --git a/include/u-boot.mk b/include/u-boot.mk index 2b8106410f5..280c6e35a10 100644 --- a/include/u-boot.mk +++ b/include/u-boot.mk @@ -16,7 +16,7 @@ PKG_FLAGS:=nonshared PKG_LICENSE:=GPL-2.0 GPL-2.0+ PKG_LICENSE_FILES:=Licenses/README -PKG_BUILD_PARALLEL:=1 +PKG_BUILD_PARALLEL ?= 1 export GCC_HONOUR_COPTS=s