gnu: klick: Fix build with GCC 7.
* gnu/packages/music.scm (klick)[arguments]: Pass -fpermissive to compiler.
This commit is contained in:
parent
923b2b5a48
commit
fb1d8d2baa
|
@ -777,6 +777,11 @@ audio and video).")
|
||||||
#:tests? #f ; no "check" target
|
#:tests? #f ; no "check" target
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'be-permissive
|
||||||
|
(lambda _
|
||||||
|
(substitute* "SConstruct"
|
||||||
|
(("'-Wall'") "'-Wall', '-fpermissive'"))
|
||||||
|
#t))
|
||||||
(add-after 'unpack 'replace-removed-scons-syntax
|
(add-after 'unpack 'replace-removed-scons-syntax
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "SConstruct"
|
(substitute* "SConstruct"
|
||||||
|
|
Loading…
Reference in New Issue