me
/
guix
Archived
1
0
Fork 0

gnu: jumpnbump: Add -fcommon to CFLAGS.

* gnu/packages/games.scm (jumpnbump)[arguments]: Replace 'configure phase to
add -fcommon to CFLAGS.
master
Ricardo Wurmus 2021-11-22 22:51:27 +01:00
parent 3e678de04c
commit 02296cb0c8
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 8 additions and 1 deletions

View File

@ -9416,7 +9416,14 @@ simulator.")
#:tests? #f ;no test
#:phases
(modify-phases %standard-phases
(delete 'configure) ;no configure script
;; There is no configure script
(replace 'configure
(lambda _
(substitute* "Makefile"
(("-funroll-loops")
"-funroll-loops -fcommon")
(("SDL_CFLAGS =")
"SDL_CFLAGS = -fcommon"))))
(add-after 'unpack 'fix-sdl-path
;; XXX: For some reason, `sdl2-config' reports stand-alone SDL
;; directory, not SDL-union provided as an input to the package.