mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
build: linux-module: Do not inherit the install-doc phase.
This is a followup commit toaaf1f18b80
, itself a followup to82c43b276d
(gnu: linux-libre: Enable building info doc). * guix/build-system/linux-module.scm (make-linux-module-builder) [phases]: Also delete inherited 'install-doc phase. Reported-by: John Kehayias <john.kehayias@protonmail.com>
This commit is contained in:
parent
1a59231840
commit
b4be83b6ac
1 changed files with 1 additions and 0 deletions
|
@ -68,6 +68,7 @@ (define (make-linux-module-builder linux)
|
||||||
(invoke "make" "modules_prepare")))
|
(invoke "make" "modules_prepare")))
|
||||||
(delete 'strip) ;faster
|
(delete 'strip) ;faster
|
||||||
(delete 'build-doc) ;costly and not useful here
|
(delete 'build-doc) ;costly and not useful here
|
||||||
|
(delete 'install-doc)
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((out-lib-build (string-append #$output "/lib/modules/build")))
|
(let ((out-lib-build (string-append #$output "/lib/modules/build")))
|
||||||
|
|
Loading…
Reference in a new issue