guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: vapoursynth: Don't build on aarch64-linux.


From: Efraim Flashner
Subject: 01/01: gnu: vapoursynth: Don't build on aarch64-linux.
Date: Mon, 7 Aug 2017 00:25:23 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit cda20ee816c05adf5a55d4e70baeed8f441af3de
Author: Efraim Flashner <address@hidden>
Date:   Mon Aug 7 07:24:17 2017 +0300

    gnu: vapoursynth: Don't build on aarch64-linux.
    
    * gnu/packages/video.scm (vapoursynth)[supported-systems]: Remove
    aarch64-linux from the supported-systems.
---
 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 99bf2d9..fdb7d48 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1615,7 +1615,8 @@ manipulation.  It aims to be a modern rewrite of 
Avisynth, supporting
 multithreading, generalized colorspaces, per frame properties, and videos with
 format changes.")
     ;; src/core/cpufeatures only allows x86, ARM or PPC
-    (supported-systems (delete "mips64el-linux" %supported-systems))
+    (supported-systems (fold delete %supported-systems
+                             '("mips64el-linux" "aarch64-linux")))
     ;; As seen from the source files.
     (license license:lgpl2.1+)))
 



reply via email to

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