From ec400c16c339e6153998100b9d3a55e4d5bf4803 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Wed, 22 Sep 2021 18:26:01 +0200 Subject: [PATCH] yate: disable parallel builds Sporadic build failures are visible on the build bots. libyate.so: undefined reference to `TelEngine::ClientLogic::initStaticData()' libyate.so: undefined reference to `TelEngine::DefaultLogic::DefaultLogic(char const*, int)' collect2: error: ld returned 1 exit status Turning off parallel builds should (hopefully) work around this. Signed-off-by: Sebastian Kemper --- net/yate/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/yate/Makefile b/net/yate/Makefile index 525683d..78c2c32 100644 --- a/net/yate/Makefile +++ b/net/yate/Makefile @@ -21,7 +21,8 @@ PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Jiri Slachta PKG_FIXUP:=autoreconf -PKG_BUILD_PARALLEL:=1 +# Sporadic build failures on the build bots +PKG_BUILD_PARALLEL:=0 PKG_INSTALL:=1 # Yate currently does not compile with FORTIFY_SOURCE enabled -- 2.30.2