mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: i2c-tools: Fix cross-compilation.
* gnu/packages/linux.scm (i2c-tools)[arguments]: Use #$output to fix cross-compilation.
This commit is contained in:
parent
c78f916a46
commit
d91de53caa
1 changed files with 3 additions and 2 deletions
|
@ -4463,8 +4463,9 @@ (define-public i2c-tools
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no 'check' target
|
||||
#:make-flags (list (string-append "prefix=" %output)
|
||||
,(string-append "CC=" (cc-for-target)))
|
||||
#:make-flags
|
||||
,#~(list (string-append "prefix=" #$output)
|
||||
(string-append "CC=" #$(cc-for-target)))
|
||||
;; No configure script.
|
||||
#:phases (modify-phases %standard-phases (delete 'configure))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue