mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: openh264: Fix building on armhf and aarch64.
* gnu/packages/video.scm (openh264)[arguments]: Add 'CC=gcc' to the #:make-flags.
This commit is contained in:
parent
fcf4003950
commit
8363a83517
1 changed files with 2 additions and 1 deletions
|
@ -2001,7 +2001,8 @@ (define-public openh264
|
|||
`(("nasm" ,nasm)
|
||||
("python" ,python)))
|
||||
(arguments
|
||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||
"CC=gcc")
|
||||
#:test-target "test"
|
||||
#:phases (modify-phases %standard-phases
|
||||
;; no configure script
|
||||
|
|
Loading…
Reference in a new issue