diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-08 05:44:35 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-08 21:57:53 +0100 |
commit | 7ed3e2606b1f79f23cff50eb454adb9cae10472c (patch) | |
tree | c4085e4fab2eaf27c73690d9b282bdcb0ba9fec0 /gnu/packages/file-systems.scm | |
parent | f7f88a85d771b131ac5a907112b874d68c6b8233 (diff) | |
download | guix-7ed3e2606b1f79f23cff50eb454adb9cae10472c.tar.gz |
gnu: httpfs2: Prepare for cross-compilation.
* gnu/packages/file-systems.scm (httpfs2)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 6e74158dfc..767b7c5732 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -606,7 +606,7 @@ Extensible File Allocation Table} file systems. Included are "httpfs2-ssl" "httpfs2-ssl-mt")))))) #:make-flags - #~(list "CC=gcc") + #~(list (string-append "CC=" #$(cc-for-target))) #:parallel-build? #f ; can result in missing man pages #:tests? #f)) ; no tests (home-page "https://sourceforge.net/projects/httpfs/") |