gnu: gnugo: Fix compiling with gcc 10.

* gnu/packages/games.scm (gnugo)[arguments]: Add '-fcommon' to CFLAGS.
This commit is contained in:
Guillaume Le Vaillant 2021-10-04 16:57:54 +02:00
parent 4596fb2d4c
commit df897e1dae
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -3817,7 +3817,10 @@ (define-public gnugo
(base32 (base32
"0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s")))) "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("readline" ,readline))) (inputs
`(("readline" ,readline)))
(arguments
`(#:configure-flags '("CFLAGS=-fcommon")))
(synopsis "Play the game of Go") (synopsis "Play the game of Go")
(description (description
"GNU Go is a program that plays the game of Go, in which players "GNU Go is a program that plays the game of Go, in which players