mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: gnugo: Fix compiling with gcc 10.
* gnu/packages/games.scm (gnugo)[arguments]: Add '-fcommon' to CFLAGS.
This commit is contained in:
parent
4596fb2d4c
commit
df897e1dae
1 changed files with 4 additions and 1 deletions
|
@ -3817,7 +3817,10 @@ (define-public gnugo
|
|||
(base32
|
||||
"0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("readline" ,readline)))
|
||||
(inputs
|
||||
`(("readline" ,readline)))
|
||||
(arguments
|
||||
`(#:configure-flags '("CFLAGS=-fcommon")))
|
||||
(synopsis "Play the game of Go")
|
||||
(description
|
||||
"GNU Go is a program that plays the game of Go, in which players
|
||||
|
|
Loading…
Reference in a new issue