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:
Efraim Flashner 2021-06-21 17:08:14 +03:00
parent 0b1cf40dce
commit 5506b841d1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2998,7 +2998,8 @@ (define-public mlt
(build-system gnu-build-system)
(arguments
`(#: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
(list "--enable-gpl3"
"--enable-gpl")