diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-06 08:54:14 +0000 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-06 08:54:14 +0000 |
commit | 1ac5bd7c0bbe9a908a440b5233ee2620b9ec77d7 (patch) | |
tree | 2442a058e01cd31c4d8d937c3776377a0bfcf9af /gnu/packages/mail.scm | |
parent | 5ec0c48fd457c9f68f0cbaa3b7dec9dc780b17ae (diff) |
gnu: dovecot: Fix build.
* gnu/packages/mail.scm (dovecot)[inputs]: Use libunwind unconditionnaly to
fix the tests.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 7af3d9b0cf..69cb80eb9b 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1921,11 +1921,7 @@ facilities for checking incoming mail.") ("icu4c" ,icu4c) ("libsodium" ,libsodium) ; extra password algorithms ("libstemmer" ,libstemmer) - ;; FIXME: The 'test-backtrace' tests fail on arm when using glibc's - ;; backtrace_symbol() function so fallback to using libunwind. - ,@(if (target-arm?) - `(("libunwind" ,libunwind)) - '()) + ("libunwind" ,libunwind) ("linux-pam" ,linux-pam) ("lz4" ,lz4) ("openssl" ,openssl) |