diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-29 20:08:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-29 20:15:23 -0500 |
commit | b4be83b6ac7e2139bec5d3eaafcf8af6cbe50856 (patch) | |
tree | 99a84f3220243a1c412f20434193386cbfdf49c3 | |
parent | 1a59231840ed1fbd2ada0ffee1f50f39acedbbdd (diff) | |
download | guix-b4be83b6ac7e2139bec5d3eaafcf8af6cbe50856.tar.gz guix-b4be83b6ac7e2139bec5d3eaafcf8af6cbe50856.zip |
build: linux-module: Do not inherit the install-doc phase.
This is a followup commit to aaf1f18b8044142515ff868bcbd2b72b81ced3ec, itself
a followup to 82c43b276dd5e60c81ad2c040a9d945befc4bc88 (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>
-rw-r--r-- | guix/build-system/linux-module.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/linux-module.scm b/guix/build-system/linux-module.scm index 53b6decdfb..c1ddeaea10 100644 --- a/guix/build-system/linux-module.scm +++ b/guix/build-system/linux-module.scm @@ -68,6 +68,7 @@ (invoke "make" "modules_prepare"))) (delete 'strip) ;faster (delete 'build-doc) ;costly and not useful here + (delete 'install-doc) (replace 'install (lambda* (#:key inputs #:allow-other-keys) (let ((out-lib-build (string-append #$output "/lib/modules/build"))) |