diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-26 16:37:37 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-26 20:44:40 +0100 |
commit | 15586697c91cd004a07f8f163829b0f8e4eb588e (patch) | |
tree | 7e94b33544163e54faa97600a5f88a2665bc8be8 /gnu/packages | |
parent | 6b23d48f09209475893b38cba61c91ecd041acef (diff) | |
download | guix-15586697c91cd004a07f8f163829b0f8e4eb588e.tar guix-15586697c91cd004a07f8f163829b0f8e4eb588e.tar.gz |
gnu: imapfilter: Cross-compile.
* gnu/packages/mail.scm (imapfilter)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/mail.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 33811837db..b7e5e3a00e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3741,7 +3741,7 @@ PGP handling, multiple servers, and secure connections.") `(#:tests? #f #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) - "CC=gcc") + (string-append "CC=" ,(cc-for-target))) #:phases (modify-phases %standard-phases (delete 'configure)))) ; no configure script |