gnu: mlt: Don't hardcode gcc value.
* gnu/packages/video.scm (mlt)[arguments]: Adjust make-flags to use cc-for-target, cxx-for-target.
This commit is contained in:
parent
0b1cf40dce
commit
5506b841d1
1 changed files with 2 additions and 1 deletions
|
@ -2998,7 +2998,8 @@ (define-public mlt
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
#:make-flags '("CC=gcc" "CXX=g++")
|
#:make-flags '(,(string-append "CC=" (cc-for-target))
|
||||||
|
,(string-append "CXX=" (cxx-for-target)))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "--enable-gpl3"
|
(list "--enable-gpl3"
|
||||||
"--enable-gpl")
|
"--enable-gpl")
|
||||||
|
|
Loading…
Reference in a new issue