mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
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.
This commit is contained in:
parent
83acf3ead4
commit
20b7b75c32
1 changed files with 5 additions and 1 deletions
|
@ -6291,7 +6291,11 @@ (define-public gnome-planner
|
|||
;; 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)
|
||||
|
|
Loading…
Reference in a new issue