diff options
| author | Ada Stevenson <adanskana@gmail.com> | 2025-09-15 14:10:58 +0800 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-20 20:52:18 +0900 |
| commit | 29b443230ca58f694546c9c8a8bdee8ac0298122 (patch) | |
| tree | 2a0d6b3a4d68af9c555cbb97de6a757f73f517a2 /gnu | |
| parent | 43e5e856e1b12c541bc91fac0650c6427675642d (diff) | |
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 <maxim@guixotic.coop>
Reviewed-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Reviewed-by: NoƩ Lopez <noelopez@free.fr>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 21a80af0804..256655072fe 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) |
