mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: usb-modeswitch: Use CC-FOR-TARGET.
* gnu/packages/usb-modeswitch.scm (usb-modeswitch)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
parent
dbfd804425
commit
9cb208d86b
1 changed files with 3 additions and 1 deletions
|
@ -23,6 +23,7 @@ (define-module (gnu packages usb-modeswitch)
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
|
@ -94,7 +95,8 @@ (define-public usb-modeswitch
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; does not support `make check`
|
||||
#:make-flags (list "CC=gcc")
|
||||
#:make-flags
|
||||
(list ,(string-append "CC=" (cc-for-target)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure) ; no configure script
|
||||
|
|
Loading…
Reference in a new issue