mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -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)
|
`(("nasm" ,nasm)
|
||||||
("python" ,python)))
|
("python" ,python)))
|
||||||
(arguments
|
(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"
|
#:test-target "test"
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
;; no configure script
|
;; no configure script
|
||||||
|
|
Loading…
Reference in a new issue