diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-12-03 12:54:01 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-12-03 12:54:01 +0100 |
| commit | 7bab3b4ec8767f7ad59c6270dde447d763738fde (patch) | |
| tree | f126f16003ee00208722fcadcce51757d0ccec2d /gnu | |
| parent | 5dfba7ac55e47ff594b810474e096edbafe13fbc (diff) | |
gnu: undbx: Ignore warnings.
* gnu/packages/mail.scm (undbx)[arguments]: Add phase 'disable-Werror.
Change-Id: I2f99bea1de5bb4aea502ffd9b6150f16a8ab46e1
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/mail.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index ee60cd19e03..c54680185bc 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2018, 2019, 2020, 2021, 2022 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com> -;;; Copyright © 2018-2024 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2018-2025 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019–2022 Tanguy Le Carrour <tanguy@bioneland.org> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org> @@ -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 |
