[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: eschalot: Cross-compile.
From: |
guix-commits |
Subject: |
05/05: gnu: eschalot: Cross-compile. |
Date: |
Sun, 20 Sep 2020 20:35:58 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 0a385196942bdd73b834b892b600a0fade076933
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Sep 21 02:23:53 2020 +0200
gnu: eschalot: Cross-compile.
* gnu/packages/crypto.scm (eschalot)[arguments]: Use CC-FOR-TARGET.
---
gnu/packages/crypto.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index c30c949..4654be1 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -362,7 +362,7 @@ secure operations. ")
`(("openssl" ,openssl-1.0))) ; for openssl/{bn,pem,rsa,sha}.h
(build-system gnu-build-system)
(arguments
- `(#:make-flags (list "CC=gcc"
+ `(#:make-flags (list (string-append "CC=" ,(cc-for-target))
(string-append "PREFIX=" (assoc-ref %outputs
"out"))
(string-append "INSTALL=" "install"))
;; XXX: make test would run a !VERY! long hashing of names with the
use