guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d30e35f2ca1c7639c259e151c04af6533e27764a
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Jul 20 09:25:05 2025 +0100

    gnu: python-fiona: Fix build with gcc@14.
    
    * gnu/packages/geo.scm (python-fiona): [arguments] <phases>: Add
    'set-configure-flags ignoring warnings.
    
    Change-Id: I245104741997eaae1f45866d4562e3883e1581ce
---
 gnu/packages/geo.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 97e537ea6c..eeaa488306 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1110,6 +1110,9 @@ projections and coordinate transformations library.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
+          (add-before 'build 'set-configure-flags
+            (lambda _
+              (setenv "CFLAGS" "-Wno-error=incompatible-pointer-types")))
          (add-before 'check 'remove-local-fiona
            (lambda _
              ; This would otherwise interfere with finding the installed

Reply via email to