summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2014-09-23 16:23:30 -0400
committerMark H Weaver <mhw@netris.org>2014-09-23 18:52:27 -0400
commitc3f16c554e9731276f17844d545e92fb6bbd56a5 (patch)
treea5b5a3d3341043d8ced25b9980986936e8fa0b0f /gnu
parent99462faca02735ddafec252cf89b44b95f87368a (diff)
gnu: gtk+: Disable tests on mips64el-linux.
* gnu/packages/gtk.scm (gtk+): Disable tests on mips64el-linux.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gtk.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 0cbd55dd52b..5a72d6736e9 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1,6 +1,7 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> 2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
3;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> 3;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
4;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
4;;; 5;;;
5;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
6;;; 7;;;
@@ -412,7 +413,10 @@ application suites.")
412 '() 413 '()
413 `(("xorg-server" ,xorg-server))))) 414 `(("xorg-server" ,xorg-server)))))
414 (arguments 415 (arguments
415 `(#:phases 416 `(;; FIXME: See above.
417 #:tests? ,(not (string=? (or (%current-target-system) (%current-system))
418 "mips64el-linux"))
419 #:phases
416 (alist-replace 420 (alist-replace
417 'configure 421 'configure
418 (lambda* (#:key inputs #:allow-other-keys #:rest args) 422 (lambda* (#:key inputs #:allow-other-keys #:rest args)