diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-16 17:04:47 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-16 17:16:23 +0200 |
commit | c887f7b3b85a2877926746110b9b394ce21212c7 (patch) | |
tree | dea6547047512978e3e05a18a512fedc39b188e5 /gnu/packages/logging.scm | |
parent | 7b2b01e38984b23dca44b6d7e87a8f73a671f87c (diff) |
gnu: multitail: Cross-compile.
* gnu/packages/logging.scm (multitail)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages/logging.scm')
-rw-r--r-- | gnu/packages/logging.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index 345a53385f..8b6d4961f8 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -165,7 +165,7 @@ commands, displaying the results via a web interface.") (build-system gnu-build-system) (arguments `(#:make-flags - (list "CC=gcc" + (list (string-append "CC=" ,(cc-for-target)) (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:phases |