guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: libusb-0.1: fix build failure on newer gcc


From: guix-commits
Subject: branch master updated: gnu: libusb-0.1: fix build failure on newer gcc
Date: Sun, 03 May 2020 16:55:03 -0400

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

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 96e399e  gnu: libusb-0.1: fix build failure on newer gcc
96e399e is described below

commit 96e399ee30251a0767a45b2bde3f052b25c62714
Author: Christopher Howard <address@hidden>
AuthorDate: Sat May 2 14:41:00 2020 -0800

    gnu: libusb-0.1: fix build failure on newer gcc
    
    * gnu/packages/libusb.scm (libusb-0.1): Disable -Werror.
    
    Signed-off-by: Jakub Kądziołka <address@hidden>
---
 gnu/packages/libusb.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index 01c138c..5f64b33 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2017 Jonathan Brielmaier <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Vagrant Cascadian <address@hidden>
+;;; Copyright © 2020 Christopher Howard <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -113,7 +114,8 @@ version of libusb to run with newer libusb.")
       (sha256
        (base32
         "0i4bacxkyr7xyqxbmb00ypkrv4swkgm0mghbzjsnw6blvvczgxip"))
-      (patches (search-patches "libusb-0.1-disable-tests.patch"))))))
+      (patches (search-patches "libusb-0.1-disable-tests.patch"))))
+    (arguments `(#:configure-flags (list "CFLAGS=-Wno-error")))))
 
 (define-public libusb4java
   ;; There is no public release so we take the latest version from git.



reply via email to

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