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 29b443230c gnu: libbonoboui: Fix build.
29b443230c is described below

commit 29b443230ca58f694546c9c8a8bdee8ac0298122
Author: Ada Stevenson <[email protected]>
AuthorDate: Mon Sep 15 14:10:58 2025 +0800

    gnu: libbonoboui: Fix build.
    
    * gnu/packages/gnome.scm (libbonoboui): Fix build.
    [arguments] <configure-flags>: Add -Wno-error=incompatible-pointer-types.
    
    Change-Id: I3ab96d444ad74b15a22b05497e686a1b8f90fc25
    Signed-off-by: Maxim Cournoyer <[email protected]>
    Reviewed-by: Liliana Marie Prikler <[email protected]>
    Reviewed-by: NoĆ© Lopez <[email protected]>
---
 gnu/packages/gnome.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 21a80af080..256655072f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4237,7 +4237,9 @@ widgets built in the loading process.")
                 "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
+     `(#:configure-flags
+       '("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types")
+       #:phases
        (modify-phases %standard-phases
          (add-before 'check 'start-xserver
            (lambda* (#:key inputs #:allow-other-keys)

Reply via email to