diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-12-05 15:34:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-05 15:37:39 +0200 |
commit | 73bd8ab6692df2536df4fe230c9c223179645e88 (patch) | |
tree | 46b6b1f63a726424ec2f5177a545e6c5d438f313 /guix/build-system | |
parent | ac1ee30f4f7f9d0ae2a655676b0e8b9eb90a35dd (diff) |
Revert "build-system/linux-module: Accept a #:make-flags keyword."
I should've tested this better before pushing the commit.
This reverts commit fabd4900d8fb739a55e2dff76dee3a29b2a90bb1.
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/linux-module.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/guix/build-system/linux-module.scm b/guix/build-system/linux-module.scm index dde2423434..6084d22210 100644 --- a/guix/build-system/linux-module.scm +++ b/guix/build-system/linux-module.scm @@ -1,6 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org> -;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -121,7 +120,6 @@ (define* (linux-module-build store name inputs #:key (search-paths '()) - (make-flags '()) (tests? #t) (phases '(@ (guix build linux-module-build-system) %standard-phases)) @@ -148,7 +146,6 @@ search-paths) #:phases ,phases #:system ,system - #:make-flags ,make-flags #:tests? ,tests? #:outputs %outputs #:inputs %build-inputs))) |