iyzsong pushed a commit to branch master
in repository guix.
commit 59e3fbea1b6e2f023807a40a9112b14d709b3255
Author: 宋文武 <[email protected]>
AuthorDate: Mon Aug 21 18:31:12 2023 +0800
gnu: prboom-plus: Fix build.
* gnu/packages/games.scm (prboom-plus)[arguments]<#:configure-flags>:
Add "CFLAGS=-fcommon".
---
gnu/packages/games.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 34558eb712..159a11c35f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -2377,7 +2377,7 @@ Every puzzle has a complete solution, although there may
be more than one.")
#t))))
(build-system gnu-build-system)
(arguments
- '(#:configure-flags '("--disable-cpu-opt")
+ '(#:configure-flags '("--disable-cpu-opt" "CFLAGS=-fcommon")
#:make-flags `(,(string-append "gamesdir="
(assoc-ref %outputs "out") "/bin"))
#:phases