mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: libinput: Use the 'release' Meson build type.
* gnu/packages/freedesktop.scm (libinput)[arguments]: Add <#:build-type>.
This commit is contained in:
parent
c43b090326
commit
794c773d0c
1 changed files with 6 additions and 1 deletions
|
@ -162,7 +162,12 @@ (define-public libinput
|
||||||
"07a0w7rak7rvnh6g4j0akwjxwinxfszc1xi9mrx12fv82k3mgsyk"))))
|
"07a0w7rak7rvnh6g4j0akwjxwinxfszc1xi9mrx12fv82k3mgsyk"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-Ddocumentation=false")))
|
`(#:configure-flags '("-Ddocumentation=false")
|
||||||
|
|
||||||
|
;; XXX: Using 'debug' or 'debugoptimized' pulls in an additional test that
|
||||||
|
;; hangs, and the comments around it suggests that we should be using this
|
||||||
|
;; Meson target anyway.
|
||||||
|
#:build-type "release"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("check" ,check)
|
`(("check" ,check)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Loading…
Reference in a new issue