diff options
-rw-r--r-- | gnu/packages/video.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 7eff842e0d..c61b372af7 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -136,6 +136,11 @@ (%current-system)) '("--host=mips64el-unknown-linux-gnu") '()) + ;; The same is also true with aarch64. + ,@(if (string=? "aarch64-linux" + (%current-system)) + '("--host=aarch64-unknown-linux-gnu") + '()) (string-append "--with-ncurses=" ncurses))))))))) (home-page "http://aa-project.sourceforge.net/aalib/") |