gnu: gtk+: Remove dependency on Xorg server on mips64el-linux.
Reported by Mark H. Weaver. * gnu/packages/gtk.scm (gtk+)[native-inputs]: Remove XORG-SERVER on mips64el-linux.
This commit is contained in:
parent
4627a46470
commit
99462faca0
|
@ -404,7 +404,13 @@ application suites.")
|
|||
("pkg-config" ,pkg-config)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("python-wrapper" ,python-wrapper)
|
||||
("xorg-server" ,xorg-server)))
|
||||
|
||||
;; FIXME: The Xorg server is needed to run the tests, but it currently
|
||||
;; fails to build on mips64el, so remove it in the meantime.
|
||||
,@(if (string=? (or (%current-target-system) (%current-system))
|
||||
"mips64el-linux")
|
||||
'()
|
||||
`(("xorg-server" ,xorg-server)))))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(alist-replace
|
||||
|
|
Loading…
Reference in New Issue