civodul pushed a commit to branch master in repository guix. commit 244a0d5aade838aebf0b63885a43747518a74ed6 Author: Ludovic Courtès <l...@gnu.org> Date: Sat Oct 27 12:50:19 2018 +0200
gnu: libzmf: Disable '-Werror'. Fixes builds on i686-linux. * gnu/packages/libreoffice.scm (libzmf)[arguments]: New field. --- gnu/packages/libreoffice.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index e5ab5c5..b6ff6dc 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -731,6 +731,9 @@ Works word processor file format.") (sha256 (base32 "08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197")))) (build-system gnu-build-system) + (arguments + ;; A harmless 'sign-compare' error pops up on i686 so disable '-Werror'. + '(#:configure-flags '("--disable-werror"))) (inputs `(("boost" ,boost) ("icu4c" ,icu4c)