[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: klick: Fix build with GCC 7.
From: |
guix-commits |
Subject: |
05/05: gnu: klick: Fix build with GCC 7. |
Date: |
Thu, 19 Sep 2019 15:33:55 -0400 (EDT) |
rekado pushed a commit to branch core-updates
in repository guix.
commit fb1d8d2baab907493367930e8069f937a5187b61
Author: Ricardo Wurmus <address@hidden>
Date: Thu Sep 19 16:04:44 2019 +0200
gnu: klick: Fix build with GCC 7.
* gnu/packages/music.scm (klick)[arguments]: Pass -fpermissive to compiler.
---
gnu/packages/music.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 2b30308..b81c2cb 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -777,6 +777,11 @@ audio and video).")
#:tests? #f ; no "check" target
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'be-permissive
+ (lambda _
+ (substitute* "SConstruct"
+ (("'-Wall'") "'-Wall', '-fpermissive'"))
+ #t))
(add-after 'unpack 'replace-removed-scons-syntax
(lambda _
(substitute* "SConstruct"