mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build: linux-module: Do not inherit the build-doc phase.
This is a followup commit to 82c43b276d
(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>
This commit is contained in:
parent
3e14e316a5
commit
aaf1f18b80
1 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,8 @@ (define (make-linux-module-builder linux)
|
|||
(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")))
|
||||
|
|
Loading…
Reference in a new issue