[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/11: gnu: xorg-server: Use 'modify-phases' syntax.
From: |
Marius Bakke |
Subject: |
06/11: gnu: xorg-server: Use 'modify-phases' syntax. |
Date: |
Tue, 21 Feb 2017 08:58:53 -0500 (EST) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit 10cd39d1e03e267d0c47a80e7edf9f98a5ce8b5b
Author: Marius Bakke <address@hidden>
Date: Wed Jan 25 14:26:04 2017 +0100
gnu: xorg-server: Use 'modify-phases' syntax.
* gnu/packages/xorg.scm (xorg-server)[arguments]: Use 'modify-phases'.
---
gnu/packages/xorg.scm | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 4c4af32..ede07fa 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -5066,17 +5066,19 @@ over Xlib, including:
"--enable-kdrive"
"--enable-xephyr")
- #:phases (alist-cons-before
- 'configure 'pre-configure
- (lambda _
- (substitute* (find-files "." "\\.c$")
- (("/bin/sh") (which "sh")))
-
- ;; Don't try to 'mkdir /var'.
- (substitute* "hw/xfree86/Makefile.in"
- (("\\$\\(MKDIR_P\\).*logdir.*")
- "true\n")))
- %standard-phases)))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before
+ 'configure 'pre-configure
+ (lambda _
+ (substitute* (find-files "." "\\.c$")
+ (("/bin/sh") (which "sh")))
+
+ ;; Don't try to 'mkdir /var'.
+ (substitute* "hw/xfree86/Makefile.in"
+ (("\\$\\(MKDIR_P\\).*logdir.*")
+ "true\n"))
+ #t)))))
(home-page "https://www.x.org/wiki/";)
(synopsis "Xorg implementation of the X Window System")
(description
- branch core-updates updated (3b88f37 -> 9e5af7b), Marius Bakke, 2017/02/21
- 06/11: gnu: xorg-server: Use 'modify-phases' syntax.,
Marius Bakke <=
- 08/11: gnu: xf86-video-qxl: Change to libxfont2 ABI., Marius Bakke, 2017/02/21
- 04/11: gnu: cmake: Run tests in parallel., Marius Bakke, 2017/02/21
- 02/11: gnu: cmake: Update to 3.7.2., Marius Bakke, 2017/02/21
- 09/11: gnu: xf86-video-intel: Change to libxfont2 ABI., Marius Bakke, 2017/02/21
- 01/11: Merge branch 'staging' into core-updates, Marius Bakke, 2017/02/21
- 05/11: gnu: Add address@hidden, Marius Bakke, 2017/02/21
- 07/11: gnu: xorg-server: Update to 1.19.1., Marius Bakke, 2017/02/21
- 11/11: gnu: mesa: Update to 13.0.5., Marius Bakke, 2017/02/21
- 10/11: gnu: xf86-input-wacom: Fix compatibility with xorg ABI 25., Marius Bakke, 2017/02/21
- 03/11: gnu: cmake: Remove bundled software., Marius Bakke, 2017/02/21