efraim pushed a commit to branch master
in repository guix.

commit 8363a8351728007f8d624f4a49ecd7b47fd166c7
Author: Efraim Flashner <efr...@flashner.co.il>
Date:   Thu Jun 29 11:44:25 2017 +0300

    gnu: openh264: Fix building on armhf and aarch64.
    
    * gnu/packages/video.scm (openh264)[arguments]: Add 'CC=gcc' to
    the #:make-flags.
---
 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 32f09db..816fb9d 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2001,7 +2001,8 @@ of modern, widely supported codecs.")
      `(("nasm" ,nasm)
        ("python" ,python)))
     (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"
        #:phases (modify-phases %standard-phases
                   ;; no configure script

Reply via email to