diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2019-04-11 23:49:43 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-04-12 00:13:34 +0200 |
commit | 88e13c2587ab9a0f96bb63488c253fb14ac9ff60 (patch) | |
tree | 1a625e1dfac337f4455a1cc22dcbeab720c24d4d /guix/build | |
parent | b2521eed916f10911ad7988c007c34f6e918bc93 (diff) |
build-system/linux-module: Support module source versioning.
* guix/build-system/linux-module.scm (make-linux-module-builder)
[native-inputs]: Add linux.
[arguments]<#:phases>[install]: Install "System.map" and "Module.symvers".
* guix/build/linux-module-build-system.scm (configure): Delete procedure.
(%standard-phases): Delete "configure" phase.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/linux-module-build-system.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/guix/build/linux-module-build-system.scm b/guix/build/linux-module-build-system.scm index a6664f1eca..01cb8cef6c 100644 --- a/guix/build/linux-module-build-system.scm +++ b/guix/build/linux-module-build-system.scm @@ -32,10 +32,6 @@ ;; ;; Code: -;; TODO: It might make sense to provide "Module.symvers" in the future. -(define* (configure #:key inputs #:allow-other-keys) - #t) - (define* (build #:key inputs make-flags #:allow-other-keys) (apply invoke "make" "-C" (string-append (assoc-ref inputs "linux-module-builder") @@ -64,7 +60,7 @@ (define %standard-phases (modify-phases gnu:%standard-phases - (replace 'configure configure) + (delete 'configure) (replace 'build build) (replace 'install install))) |