1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-28 21:20:29 +02:00

gnu: bsd-games: Fix build with gcc-14.

* gnu/packages/games.scm (bsd-games)[arguments]<#:phases>{gcc-14}:
New phase.

Change-Id: I7179a0e61860be44cf15baa8e2e6133552b93ee0
This commit is contained in:
Andreas Enge
2025-07-25 19:22:53 +02:00
parent 0a07d26b21
commit 38861468a0

View File

@@ -1020,6 +1020,12 @@ possible, while battling many vicious aliens.")
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'gcc14
;; See line 84 of
;; https://github.com/NixOS/nixpkgs/pull/369352/files#diff-d4e7b24a8c4ebea52238a5421f96f293576ae2be634cd72c1c1521ee043a01fdR84
(lambda _
(substitute* "hunt/hunt/otto.c"
(("sigpause\\(old_mask\\);") ""))))
(replace 'configure
(lambda* (#:key outputs inputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))