rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 84f39130a5d9254d006df2bc2460711fa6116dee
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Tue Oct 19 09:49:46 2021 +0000
gnu: festival: Fix build with -fcommon.
* gnu/packages/speech.scm (festival)[arguments]: Add phase "set-fcommon" to
add "-fcommon" to compiler flags.
---
gnu/packages/speech.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm
index cbc46b3..8914d6d 100644
--- a/gnu/packages/speech.scm
+++ b/gnu/packages/speech.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2017 Leo Famulari <[email protected]>
;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2016 Kei Kebreau <[email protected]>
-;;; Copyright © 2019 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2019, 2021 Ricardo Wurmus <[email protected]>
;;; Copyright © 2020 Nicolas Goaziou <[email protected]>
;;; Copyright © 2020 Efraim Flashner <[email protected]>
;;; Copyright © 2021 qblade <[email protected]>
@@ -366,6 +366,11 @@ be used by the sighted.")
"config/make_system.mak")
(("/bin/sh") (which "sh"))))
#t))
+ (add-after 'unpack-and-patch-speech-tools 'set-fcommon
+ (lambda _
+ (substitute* "../speech_tools/config/rules/defaults.mak"
+ (("\\(CFLAGS\\)") "(CFLAGS) -fcommon")
+ (("\\(CXXFLAGS\\)") "(CXXFLAGS) -fcommon"))))
(add-after 'unpack 'patch-/bin/sh
(lambda _
(substitute* '("config/test_make_rules"