diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-02-26 17:14:14 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-02-26 17:14:14 +0100 |
commit | 73db69bea15e390a31289fdfadb1d5b9a7d13557 (patch) | |
tree | bbe20e2d6de150c62c34080fb953caceb7d529bc /gnu | |
parent | cc11905568065409fe46487174e1cf404291bda1 (diff) | |
download | guix-73db69bea15e390a31289fdfadb1d5b9a7d13557.tar.gz guix-73db69bea15e390a31289fdfadb1d5b9a7d13557.zip |
gnu: thermald: Fix build.
* gnu/packages/admin.scm (thermald)[arguments]: Add "--disable-werror" to
'configure-flags'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 5 |
1 files 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 <zerodaysfordays@sdf.org> ;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com> -;;; Copyright © 2019, 2021 Guillaume Le Vaillant <glv@posteo.net> +;;; Copyright © 2019, 2021, 2022 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2019, 2020, 2021 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> @@ -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 |