aboutsummaryrefslogtreecommitdiff
path: root/guix/build-system/linux-module.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-11-29 20:08:21 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-11-29 20:15:23 -0500
commitb4be83b6ac7e2139bec5d3eaafcf8af6cbe50856 (patch)
tree99a84f3220243a1c412f20434193386cbfdf49c3 /guix/build-system/linux-module.scm
parent1a59231840ed1fbd2ada0ffee1f50f39acedbbdd (diff)
downloadguix-b4be83b6ac7e2139bec5d3eaafcf8af6cbe50856.tar
guix-b4be83b6ac7e2139bec5d3eaafcf8af6cbe50856.tar.gz
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>
Diffstat (limited to 'guix/build-system/linux-module.scm')
-rw-r--r--guix/build-system/linux-module.scm1
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")))