janneke pushed a commit to branch core-packages-team
in repository guix.

commit b1aa2d393d7cd3100338d377dbc79aa67c9d75ce
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Sat Jan 4 11:39:43 2025 +0100

    gnu: autofs: Update to 5.1.9 and fix build with gcc-14.
    
    * gnu/packages/file-systems.scm (autofs): Update to 5.1.9.
    [arguments]: Add #:make-flags to relax gcc-14's strictness.
    
    Change-Id: I08c19300feacfdcd69c9721a22cbd543655ec3a2
---
 gnu/packages/file-systems.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 01c564bc77..54bbd2f932 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -17,7 +17,9 @@
 ;;; Copyright © 2025 Julian Flake <fl...@uni-koblenz.de>
 ;;; Copyright © 2025 Ashish SHUKLA <ashish...@lostca.se>
 ;;; Copyright © 2020-2025 Maxim Cournoyer <maxim.courno...@gmail.com>
-;;
+;;;
+;;; Copyright © 2025 Janneke Nieuwenhuizen <jann...@gnu.org>
+;;;
 ;;; This file is part of GNU Guix.
 ;;;
 ;;; GNU Guix is free software; you can redistribute it and/or modify it
@@ -126,7 +128,7 @@
 (define-public autofs
   (package
     (name "autofs")
-    (version "5.1.8")
+    (version "5.1.9")
     (source
      (origin
        (method url-fetch)
@@ -134,7 +136,7 @@
                            "v" (version-major version) "/"
                            "autofs-" version ".tar.xz"))
        (sha256
-        (base32 "1zf0fgf6kr9amxq5amlgsp1v13sizwl3wvx2xl7b4r2nhmci0gdk"))))
+        (base32 "0jy2nf9j8pf8888rxm9cr7vva8vx1vjq35six9i98jvr0dmazrl7"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags
@@ -149,6 +151,7 @@
              (string-append "sssldir="
                             (assoc-ref %build-inputs "sssd")
                             "/lib/sssd/modules"))
+       #:make-flags '("CC=gcc -Wno-error=incompatible-pointer-types")
        #:tests? #f                      ; no test suite
        #:phases
        (modify-phases %standard-phases

Reply via email to