guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: gnome-planner: Fix building on aarch64.


From: Efraim Flashner
Subject: 05/05: gnu: gnome-planner: Fix building on aarch64.
Date: Mon, 19 Jun 2017 01:43:29 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 20b7b75c3225a567637f5fe660fd4a80c59e58be
Author: Efraim Flashner <address@hidden>
Date:   Mon Jun 19 08:39:16 2017 +0300

    gnu: gnome-planner: Fix building on aarch64.
    
    * gnu/packages/gnome.scm (gnome-planner)[arguments]: Add configure-flag
    to set build-target when building on aarch64.
---
 gnu/packages/gnome.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 43b7e0a..34bd338 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6291,7 +6291,11 @@ text views, and buttons to choose the language.")
      ;; Disable the Python bindings because the Planner program functions
      ;; without them, and (as of 2017-06-13) we have not packaged all of
      ;; packages that are necessary for building the Python bindings.
-     `(#:configure-flags (list "--disable-python")))
+     `(#:configure-flags
+       (list "--disable-python"
+             ,@(if (string=? "aarch64-linux" (%current-system))
+                   '("--build=aarch64-unknown-linux-gnu")
+                   '()))))
     (inputs
      `(("libgnomecanvas" ,libgnomecanvas)
        ("libgnomeui" ,libgnomeui)



reply via email to

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