guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 2e2c5ecdf8b7b1d1627de1a28a653cb93cd7c239 Author: Zheng Junjie <[email protected]> AuthorDate: Fri Jun 20 23:54:54 2025 +0800 gnu: hplip: Fix build on gcc 14. * gnu/packages/cups.scm (hplip)[arguments]<#:phases>: Also Add -Wno-error=implicit-int to relax gcc-14's strictness. Change-Id: If1dcaffad3e18c8070656451f3f22960f9eb4c16 --- gnu/packages/cups.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 2ef1a56b2f..3e1c8166db 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -603,6 +603,7 @@ should only be used as part of the Guix cups-pk-helper service.") " -Wno-error=implicit-function-declaration" " -Wno-error=implicit-int" " -Wno-error=incompatible-pointer-types" + " -Wno-error=int-conversion" " -Wno-error=return-mismatch"))))) (add-after 'unpack 'fix-hard-coded-file-names (lambda* (#:key inputs outputs #:allow-other-keys)
