diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-01-05 12:03:38 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:25 +0200 |
commit | 3f0bd30cfcd9715a79dca36f9c019c240d702612 (patch) | |
tree | a28a8607e9d8d5615270ec665f00f9541fe685ec | |
parent | cc69155a5fbdf482bcd9a569a23800192c89c560 (diff) |
gnu: gucharmap: Fix build with gcc-14.
* gnu/packages/gnome.scm (gucharmap)[argument]: Add CFLAGS to #:configure-flags
to relax gcc-14's strictness.
Change-Id: I234d21da13a688029e306a793d5348e17c6c9042
-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 069eaa89fd..b6fb2438ad 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11466,7 +11466,9 @@ basically a text box in which notes can be written.") (guix build glib-or-gtk-build-system) (guix build utils)) #:configure-flags - (list "--with-unicode-data=../unicode-data") + (list + "CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types" + "--with-unicode-data=../unicode-data") #:phases (modify-phases %standard-phases (add-after 'unpack 'prepare-unicode-data |