This is an automated email from the git hooks/post-receive script.
glv pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 73db69bea1 gnu: thermald: Fix build.
73db69bea1 is described below
commit 73db69bea15e390a31289fdfadb1d5b9a7d13557
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Sat Feb 26 17:14:14 2022 +0100
gnu: thermald: Fix build.
* gnu/packages/admin.scm (thermald)[arguments]: Add "--disable-werror" to
'configure-flags'.
---
gnu/packages/admin.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index d232013ef9..c8f91aab0d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -28,7 +28,7 @@
;;; Copyright © 2019 Jakob L. Kreuze <[email protected]>
;;; Copyright © 2019 Hartmut Goebel <[email protected]>
;;; Copyright © 2019 Alex Griffin <[email protected]>
-;;; Copyright © 2019, 2021 Guillaume Le Vaillant <[email protected]>
+;;; Copyright © 2019, 2021, 2022 Guillaume Le Vaillant <[email protected]>
;;; Copyright © 2019, 2020, 2021 Mathieu Othacehe <[email protected]>
;;; Copyright © 2020 Oleg Pykhalov <[email protected]>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]>
@@ -3869,7 +3869,8 @@ hard-coded.")
(let ((out (assoc-ref %outputs "out")))
(list (string-append "--with-dbus-sys-dir="
out "/etc/dbus-1/system.d")
- "--localstatedir=/var"))
+ "--localstatedir=/var"
+ "--disable-werror"))
#:make-flags
(list "V=1") ; log build commands
#:phases