mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
build-system/linux-module: Accept a #:make-flags keyword.
Fixes bug#37882. * guix/build-system/linux-module.scm (linux-module-build): Accept a MAKE-FLAGS argument. <builder>: Pass it on.
This commit is contained in:
parent
6ea613ce63
commit
fabd4900d8
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
|
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -120,6 +121,7 @@ (define private-keywords
|
||||||
(define* (linux-module-build store name inputs
|
(define* (linux-module-build store name inputs
|
||||||
#:key
|
#:key
|
||||||
(search-paths '())
|
(search-paths '())
|
||||||
|
(make-flags '())
|
||||||
(tests? #t)
|
(tests? #t)
|
||||||
(phases '(@ (guix build linux-module-build-system)
|
(phases '(@ (guix build linux-module-build-system)
|
||||||
%standard-phases))
|
%standard-phases))
|
||||||
|
@ -146,6 +148,7 @@ (define builder
|
||||||
search-paths)
|
search-paths)
|
||||||
#:phases ,phases
|
#:phases ,phases
|
||||||
#:system ,system
|
#:system ,system
|
||||||
|
#:make-flags ,make-flags
|
||||||
#:tests? ,tests?
|
#:tests? ,tests?
|
||||||
#:outputs %outputs
|
#:outputs %outputs
|
||||||
#:inputs %build-inputs)))
|
#:inputs %build-inputs)))
|
||||||
|
|
Loading…
Reference in a new issue