[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: xf86-video-geode: Only supported on i686 systems.
From: |
Mark H. Weaver |
Subject: |
03/03: gnu: xf86-video-geode: Only supported on i686 systems. |
Date: |
Wed, 28 Jan 2015 20:43:36 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit a884ad0bff0d5dafb53cd447455a2709270d84e3
Author: Mark H Weaver <address@hidden>
Date: Wed Jan 28 15:42:10 2015 -0500
gnu: xf86-video-geode: Only supported on i686 systems.
* gnu/packages/xorg.scm (xf86-video-geode)[supported-systems]: Trim to
include
only i686-based systems.
---
gnu/packages/xorg.scm | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index fd142a5..5412f44 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2499,6 +2499,10 @@ devices, thus making direct access unnecessary.")
(build-system gnu-build-system)
(inputs `(("pkg-config" ,pkg-config)
("xorg-server" ,xorg-server)))
+ (supported-systems
+ ;; This driver is only supported on i686 systems.
+ (filter (lambda (system) (string-prefix? "i686-" system))
+ %supported-systems))
(home-page "http://www.x.org/wiki/")
(synopsis "Xorg implementation of the X Window System")
(description "X.org provides an implementation of the X Window System")