mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
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
1 changed files with 5 additions and 0 deletions
|
@ -777,6 +777,11 @@ (define-public klick
|
||||||
#: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 a new issue