gnu: dovecot: Fix backtrace test on aarch64.
* gnu/packages/mail.scm (dovecot)[arguments]: Add LDFLAGS=-rdynamic to make-flags.
This commit is contained in:
parent
d93bb18386
commit
74130e73c0
1 changed files with 4 additions and 0 deletions
|
@ -1895,6 +1895,10 @@ facilities for checking incoming mail.")
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--with-sqlite" ; not auto-detected
|
"--with-sqlite" ; not auto-detected
|
||||||
"--with-lucene") ; not auto-detected
|
"--with-lucene") ; not auto-detected
|
||||||
|
;; The -rdynamic linker flag is needed for the backtrace() function to
|
||||||
|
;; have symbol names rather than just addresses. Dovecot's tests rely
|
||||||
|
;; on this, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962630.
|
||||||
|
#:make-flags (list "LDFLAGS=-rdynamic")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-file-names
|
(add-after 'unpack 'patch-file-names
|
||||||
|
|
Reference in a new issue