diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-01 14:44:01 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-01 14:44:01 +0100 |
commit | 7d1986c49f78a4a8120af1b6ee1251beccc6f92e (patch) | |
tree | f1070d706c062587b71a964896970f8e0d74057d /gnu/packages/popt.scm | |
parent | f8460d26ab201b3605be42cd5c6708a245042e62 (diff) | |
download | patches-7d1986c49f78a4a8120af1b6ee1251beccc6f92e.tar patches-7d1986c49f78a4a8120af1b6ee1251beccc6f92e.tar.gz |
gnu: gengetopt: Disable parallel tests.
* gnu/packages/popt.scm (gengetopt)[arguments]: Add #:parallel-tests? #f.
Diffstat (limited to 'gnu/packages/popt.scm')
-rw-r--r-- | gnu/packages/popt.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/popt.scm b/gnu/packages/popt.scm index fbee08bd0b..5da2bb1d3f 100644 --- a/gnu/packages/popt.scm +++ b/gnu/packages/popt.scm @@ -135,7 +135,8 @@ appropriately.") "1xq1kcfs6hri101ss4dhym0jn96z4v6jdvx288mfywadc245mc1h")))) (build-system gnu-build-system) (arguments - `(#:parallel-build? #f)) ; not supported + `(#:parallel-build? #f ; not supported + #:parallel-tests? #f)) ; likewise (synopsis "Create parsers for command line options") (description "GNU Gengetopt is a program to generate a C/C++ function for parsing |