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
|
@ -2001,7 +2001,8 @@ of modern, widely supported codecs.")
|
||||||
`(("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 New Issue