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

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c39b0461d4 gnu: ath9k-htc-firmware: Fix deprecation warnings.
c39b0461d4 is described below

commit c39b0461d4e98cf95e22cd960067830a6e3118a2
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Jan 5 21:14:30 2023 -0500

    gnu: ath9k-htc-firmware: Fix deprecation warnings.
    
    * gnu/packages/firmware.scm (ath9k-htc-firmware): Invoke cross-binutils 
using
    keyword arguments.
---
 gnu/packages/firmware.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 4d4fc8fe23..f08d59752a 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -121,9 +121,12 @@
     ;; Use our own tool chain for that.
     (native-inputs `(("cross-gcc" ,(cross-gcc
                                     "xtensa-elf"
-                                    #:xbinutils (cross-binutils "xtensa-elf"
-                                                                
binutils-2.33)))
-                     ("cross-binutils" ,(cross-binutils "xtensa-elf" 
binutils-2.33))
+                                    #:xbinutils (cross-binutils
+                                                 "xtensa-elf"
+                                                 #:binutils binutils-2.33)))
+                     ("cross-binutils" ,(cross-binutils
+                                         "xtensa-elf"
+                                         #:binutils binutils-2.33))
                      ("cmake" ,cmake-minimal)
                      ("perl" ,perl)))
     (home-page "https://wireless.wiki.kernel.org/en/users/Drivers/ath9k_htc";)

Reply via email to