guix-commits
[Top][All Lists]
Advanced

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

branch master updated: build: linux-module: Do not inherit the build-doc


From: guix-commits
Subject: branch master updated: build: linux-module: Do not inherit the build-doc phase.
Date: Tue, 29 Nov 2022 15:39:46 -0500

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 aaf1f18b80 build: linux-module: Do not inherit the build-doc phase.
aaf1f18b80 is described below

commit aaf1f18b8044142515ff868bcbd2b72b81ced3ec
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Nov 29 15:28:24 2022 -0500

    build: linux-module: Do not inherit the build-doc phase.
    
    This is a followup commit to 82c43b276dd5e60c81ad2c040a9d945befc4bc88 (gnu:
    linux-libre: Enable building info doc).
    
    * guix/build-system/linux-module.scm
    (make-linux-module-builder) [phases]: Delete inherited 'build-doc phase.
    
    Reported-by: John Kehayias <john.kehayias@protonmail.com>
---
 guix/build-system/linux-module.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/build-system/linux-module.scm 
b/guix/build-system/linux-module.scm
index d6c369d65d..53b6decdfb 100644
--- a/guix/build-system/linux-module.scm
+++ b/guix/build-system/linux-module.scm
@@ -66,7 +66,8 @@
             (replace 'build
               (lambda _
                 (invoke "make" "modules_prepare")))
-            (delete 'strip)             ; faster
+            (delete 'strip)             ;faster
+            (delete 'build-doc)         ;costly and not useful here
             (replace 'install
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((out-lib-build (string-append #$output 
"/lib/modules/build")))



reply via email to

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