guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: mlt: Don't hardcode gcc value.


From: guix-commits
Subject: 05/05: gnu: mlt: Don't hardcode gcc value.
Date: Mon, 21 Jun 2021 10:20:59 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 5506b841d18fa415321c22b7e2b7eec9f6ce50d9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 21 17:08:14 2021 +0300

    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(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 444eee8..fbc468e 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]