guix-patches
[Top][All Lists]
Advanced

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

[bug#43173] [PATCH 1/2] gnu: Do not truncate the version of the linux-li


From: Leo Famulari
Subject: [bug#43173] [PATCH 1/2] gnu: Do not truncate the version of the linux-libre deblobbing script file names.
Date: Wed, 2 Sep 2020 14:30:36 -0400

* gnu/packages/linux.scm (linux-libre-deblob-scripts): Use VERSION instead of
VERSION-MAJOR+MINOR.
---
 gnu/packages/linux.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b742688f79..8b66ed2b60 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -193,7 +193,7 @@ defconfig.  Return the appropriate make target if 
applicable, otherwise return
           (method url-fetch)
           (uri (string-append "https://linux-libre.fsfla.org";
                               "/pub/linux-libre/releases/" version "-gnu/"
-                              "deblob-" (version-major+minor version)))
+                              "deblob-" version))
           (file-name (string-append "linux-libre-deblob-"
                                     (version-major+minor version)))
           (sha256 deblob-hash))
@@ -202,8 +202,7 @@ defconfig.  Return the appropriate make target if 
applicable, otherwise return
           (uri (string-append "https://linux-libre.fsfla.org";
                               "/pub/linux-libre/releases/" version "-gnu/"
                               "deblob-check"))
-          (file-name (string-append "linux-libre-deblob-check-"
-                                    (version-major+minor version)))
+          (file-name (string-append "linux-libre-deblob-check-" version))
           (sha256 deblob-check-hash))))
 
 (define deblob-scripts-5.8
-- 
2.28.0






reply via email to

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