[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: rtl8821ce-linux-module: Honour PARALLEL-BUILD?.
From: |
guix-commits |
Subject: |
04/07: gnu: rtl8821ce-linux-module: Honour PARALLEL-BUILD?. |
Date: |
Fri, 1 Oct 2021 15:33:28 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit aa4d18f33cb382f094b98bd2cb7ff911b2f72388
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Fri Oct 1 21:20:45 2021 +0200
gnu: rtl8821ce-linux-module: Honour PARALLEL-BUILD?.
* gnu/packages/linux.scm (rtl8821ce-linux-module)[arguments]:
Spawn multiple build make jobs if requested.
---
gnu/packages/linux.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 31ba243..3cefa2f 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1401,8 +1401,13 @@ RTL8812AU, RTL8821AU, and RTL8814AU chips.")
#:phases
(modify-phases %standard-phases
(replace 'build
- (lambda* (#:key (make-flags '()) #:allow-other-keys)
- (apply invoke "make" make-flags))))
+ (lambda* (#:key (make-flags '()) (parallel-build? #t)
+ #:allow-other-keys)
+ (apply invoke "make"
+ `(,@(if parallel-build?
+ `("-j" ,(number->string (parallel-job-count)))
+ '())
+ ,@make-flags)))))
#:tests? #f)) ; no test suite
(home-page "https://github.com/tomaspinho/rtl8821ce")
(synopsis "Linux driver for Realtek RTL8821CE wireless network adapters")
- branch master updated (7dbd06a -> f1a3c11), guix-commits, 2021/10/01
- 01/07: build-system: linux-module: Build and install in parallel., guix-commits, 2021/10/01
- 02/07: build-system: linux-module: Don't explicitly return #t from phases., guix-commits, 2021/10/01
- 03/07: gnu: rtl8821ce-linux-module: Prepare for cross-compilation., guix-commits, 2021/10/01
- 06/07: gnu: emacs-filladapt: Fix typo in description., guix-commits, 2021/10/01
- 05/07: gnu: rtl8812au-aircrack-ng-linux-module: Inherit from rtl8821ce-linux-module., guix-commits, 2021/10/01
- 04/07: gnu: rtl8821ce-linux-module: Honour PARALLEL-BUILD?.,
guix-commits <=
- 07/07: installer: Fix typo in docstrings., guix-commits, 2021/10/01