summaryrefslogtreecommitdiff
path: root/guix/build-system/gnu.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2014-08-27 12:17:23 +0200
committerAndreas Enge <andreas@enge.fr>2014-08-27 14:29:18 +0200
commit384de55233d6c37a3dfc3dda586594f1b1a5f451 (patch)
tree3e780276b25eb7cf20bbb450bbc15520b8543556 /guix/build-system/gnu.scm
parent18311966d14faa0e195dbf9436a559cdf7c6d765 (diff)
downloadpatches-384de55233d6c37a3dfc3dda586594f1b1a5f451.tar
patches-384de55233d6c37a3dfc3dda586594f1b1a5f451.tar.gz
build-system/perl: Add handling of flags for parallel build and testing.
* guix/build-system/perl.scm (perl-build): Add support for variables parallel-build? and parallel-tests?. * guix/build-system/gnu.scm (gnu-build): Add a line break for clarity.
Diffstat (limited to 'guix/build-system/gnu.scm')
-rw-r--r--guix/build-system/gnu.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index b2b184db34..2c41ce0eb4 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -268,7 +268,8 @@ System: GCC, GNU Make, Bash, Coreutils, etc."
(out-of-source? #f)
(tests? #t)
(test-target "check")
- (parallel-build? #t) (parallel-tests? #t)
+ (parallel-build? #t)
+ (parallel-tests? #t)
(patch-shebangs? #t)
(strip-binaries? #t)
(strip-flags ''("--strip-debug"))