This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 76ec17d962 gnu: vitetris: Fix build with gcc@14. 76ec17d962 is described below commit 76ec17d9626d4c5a4ee3e596289d708718db8fcd Author: Andreas Enge <andr...@enge.fr> AuthorDate: Mon Jul 21 18:19:31 2025 +0200 gnu: vitetris: Fix build with gcc@14. * gnu/packages/games.scm (vitetris)[arguments]<#:make-flags>: Add CFLAGS. Change-Id: I1df1eae997fdf450c489cbd627a7ff579808818d --- gnu/packages/games.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 4eddaf9cc0..fad3e80ac4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -914,7 +914,8 @@ feedback support.") `(#:tests? #f ;no test #:make-flags (list ,(string-append "CC=" (cc-for-target)) - (string-append "DESTDIR=" (assoc-ref %outputs "out"))) + (string-append "DESTDIR=" (assoc-ref %outputs "out")) + "CFLAGS=-g -O2 -Wno-error=implicit-int") #:phases (modify-phases %standard-phases (replace 'configure