guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: barcode: Fix build with GCC 10.


From: guix-commits
Subject: branch master updated: gnu: barcode: Fix build with GCC 10.
Date: Sat, 18 Dec 2021 16:33:27 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cfcfda5  gnu: barcode: Fix build with GCC 10.
cfcfda5 is described below

commit cfcfda54b38e154a06eeb631301b20ae7be7e6cb
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Sat Dec 18 16:31:43 2021 -0500

    gnu: barcode: Fix build with GCC 10.
    
    Reported by bdju on #guix.
    
    * gnu/packages/aidc.scm (barcode)[arguments]: Build with -fcommon.
---
 gnu/packages/aidc.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/aidc.scm b/gnu/packages/aidc.scm
index ec038c5..5482261 100644
--- a/gnu/packages/aidc.scm
+++ b/gnu/packages/aidc.scm
@@ -102,6 +102,9 @@
                (base32
                 "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8"))))
     (build-system gnu-build-system)
+    (arguments
+      ;; Fix build with GCC 10.
+     '(#:configure-flags '("CFLAGS=-fcommon")))
     (synopsis "Convert text strings to printed bars in various standards")
     (description "GNU Barcode is a flexible tool to produce printed barcodes
 from text strings.  It supports a variety of encoding standards and sizing



reply via email to

[Prev in Thread] Current Thread [Next in Thread]