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 7bab3b4ec8 gnu: undbx: Ignore warnings.
7bab3b4ec8 is described below

commit 7bab3b4ec8767f7ad59c6270dde447d763738fde
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Dec 3 12:54:01 2025 +0100

    gnu: undbx: Ignore warnings.
    
    * gnu/packages/mail.scm (undbx)[arguments]: Add phase 'disable-Werror.
    
    Change-Id: I2f99bea1de5bb4aea502ffd9b6150f16a8ab46e1
---
 gnu/packages/mail.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index ee60cd19e0..c54680185b 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -27,7 +27,7 @@
 ;;; Copyright © 2018, 2019, 2020, 2021, 2022 Pierre Langlois 
<[email protected]>
 ;;; Copyright © 2018 Alex Vong <[email protected]>
 ;;; Copyright © 2018 Gábor Boskovits <[email protected]>
-;;; Copyright © 2018-2024 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2018-2025 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2019–2022 Tanguy Le Carrour <[email protected]>
 ;;; Copyright © 2020 Vincent Legoll <[email protected]>
 ;;; Copyright © 2020 Justus Winter <[email protected]>
@@ -4842,6 +4842,14 @@ score.")
                (base32
                 "0ncs1dzhrn9nlaxpyap2ipf61fc7k9bkkqacp3w6bngfj2c0p6yj"))))
     (build-system gnu-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'disable-Werror
+            (lambda _
+              (substitute* '("Makefile.am" "Makefile.in")
+                (("-Werror") "")))))))
     (home-page "https://undbx.sourceforge.io/";)
     (synopsis "Extract email messages from Outlook Express .dbx files")
     (description "This package provides a tool to extract, recover and

Reply via email to