glv pushed a commit to branch core-updates-frozen
in repository guix.
commit 726d077bde01cede4295aa933be2a5860717cebd
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Mon Oct 4 17:16:19 2021 +0200
gnu: vinagre: Fix compiling with gcc 10.
* gnu/packages/gnome.scm (vinagre)[arguments]: Add '-fcommon' to CFLAGS.
---
gnu/packages/gnome.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index c705d68..69fda3b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4503,7 +4503,8 @@ selection and URL hints.")))
(arguments
;; Disable -Werror and such, to avoid build failures on compilation
;; warnings.
- '(#:configure-flags '("--enable-compile-warnings=minimum")
+ '(#:configure-flags '("--enable-compile-warnings=minimum"
+ "CFLAGS=-fcommon")
#:phases
(modify-phases %standard-phases
(add-before 'install 'skip-gtk-update-icon-cache