summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/xorg.scm28
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 26300a6d87..7b667da0b3 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -5189,19 +5189,21 @@ protocol.")
(native-inputs
(list pkg-config python-minimal-wrapper))
(arguments
- `(#:configure-flags (list "--enable-xkb"
- "--disable-static"
- (string-append "--mandir="
- (assoc-ref %outputs "doc")
- "/share/man"))
- #:phases ,(if (target-hurd?)
- '(modify-phases %standard-phases
- (add-after 'unpack 'fix-PATH_MAX
- (lambda _
- ;; Hurd doesn't define PATH_MAX.
- (substitute* "src/xcb_util.c"
- (("PATH_MAX") "4096")))))
- '%standard-phases)))
+ (list
+ #:configure-flags #~(list "--enable-xkb"
+ "--disable-static"
+ (string-append "--mandir="
+ (assoc-ref %outputs "doc")
+ "/share/man"))
+ #:phases
+ (if (target-hurd?)
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-PATH_MAX
+ (lambda _
+ ;; Hurd doesn't define PATH_MAX.
+ (substitute* "src/xcb_util.c"
+ (("PATH_MAX") "4096")))))
+ #~%standard-phases)))
(home-page "https://xcb.freedesktop.org/")
(synopsis "The X C Binding (XCB) library")
(description