diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2020-08-02 14:26:52 -0400 |
---|---|---|
committer | Jakub Kądziołka <kuba@kadziolka.net> | 2020-08-09 22:12:40 +0200 |
commit | d98e0a27a7c5e34837fff4edd42a641828070213 (patch) | |
tree | 6d4a5e2e689928153760dc1a0e5e6ec62bd6918e /guix/build-system/emacs.scm | |
parent | d8787cb5696989168d03e9402a32a08ad60a4818 (diff) |
build-system/emacs: Allow usage of #:parallel-tests? key
* guix/build-system/emacs.scm (emacs-build): Pass parallel-tests? to
builder.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net>
Diffstat (limited to 'guix/build-system/emacs.scm')
-rw-r--r-- | guix/build-system/emacs.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm index ef6d1b3397..ac05ff420e 100644 --- a/guix/build-system/emacs.scm +++ b/guix/build-system/emacs.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> +;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -112,6 +113,7 @@ #:system ,system #:test-command ,test-command #:tests? ,tests? + #:parallel-tests? ,parallel-tests? #:phases ,phases #:outputs %outputs #:include ,include |