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

* gnu/packages/video.scm (vapoursynth)[supported-systems]: Remove
aarch64-linux from the supported-systems.
master
Efraim Flashner 2017-08-07 07:24:17 +03:00
parent 74033bbcc3
commit cda20ee816
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 1 deletions

View File

@ -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+)))