From 5506b841d18fa415321c22b7e2b7eec9f6ce50d9 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 21 Jun 2021 17:08:14 +0300 Subject: gnu: mlt: Don't hardcode gcc value. * gnu/packages/video.scm (mlt)[arguments]: Adjust make-flags to use cc-for-target, cxx-for-target. --- gnu/packages/video.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 444eee849e..fbc468eab7 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2998,7 +2998,8 @@ from sites like Twitch.tv and pipes them into a video player of choice.") (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") -- cgit v1.2.3