mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: f3: Fix cross-compiling.
* gnu/packages/disk.scm (f3) [arguments]: Use Gexp. Change-Id: I906a2b7b7691ae53592cfa35ba64fc7e7d735664 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
c5c28df899
commit
2c371d2cd9
1 changed files with 13 additions and 12 deletions
|
@ -27,6 +27,7 @@
|
||||||
;;; Copyright © 2022 Disseminate Dissent <disseminatedissent@protonmail.com>
|
;;; Copyright © 2022 Disseminate Dissent <disseminatedissent@protonmail.com>
|
||||||
;;; Copyright © 2023 Timotej Lazar <timotej.lazar@araneo.si>
|
;;; Copyright © 2023 Timotej Lazar <timotej.lazar@araneo.si>
|
||||||
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||||
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -843,11 +844,11 @@ (define-public f3
|
||||||
(base32 "17l5vspfcgfbkqg7bakp3gql29yb05gzawm8n3im30ilzdr53678"))))
|
(base32 "17l5vspfcgfbkqg7bakp3gql29yb05gzawm8n3im30ilzdr53678"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
(list #:tests? #f ; no check target
|
||||||
#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "PREFIX=" %output))
|
(string-append "PREFIX=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure) ; no configure script
|
(delete 'configure) ; no configure script
|
||||||
(add-after 'build 'build-extra
|
(add-after 'build 'build-extra
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue