This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 36fc0fc87b gnu: libappindicator: Disable parallel builds. 36fc0fc87b is described below commit 36fc0fc87b469125d953f72f41b1ce48d759ba59 Author: Andreas Enge <andr...@enge.fr> AuthorDate: Sun Jul 20 17:37:43 2025 +0200 gnu: libappindicator: Disable parallel builds. They may create a race condition such that the file application-service-marshal.h is included before it is created. * gnu/packages/freedesktop.scm (libappindicator)[arguments] <#:parallel-build?>: Set to #f. Fixes: guix/guix#1417 Reported-by: Dariqq <dar...@posteo.net> Change-Id: I9d7edac11cde1de84df59b09e5414b1989a5d7f2 --- gnu/packages/freedesktop.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index efca71e073..04c5c7fa63 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -3159,7 +3159,8 @@ useful with system integration.") (propagated-inputs (list gtk+ libdbusmenu)) (arguments - `(#:configure-flags '("--with-gtk=3") + `(#:parallel-build? #f ; race condition for application-service-marshal.h + #:configure-flags '("--with-gtk=3") #:make-flags '("CFLAGS=-Wno-error") #:tests? #f ; One test does not pass (it succeeds when it should fail). #:phases