diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-06-14 21:20:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-06-14 21:29:02 +0200 |
commit | a083b5cb21f18e124460f887cb0eee8aca28d6cd (patch) | |
tree | 8da4aabcf9473890be86f46cafcde0fdaa6acee3 | |
parent | f828ff5b148e4e083001c25d2e9c3b52c0e87da3 (diff) | |
download | patches-a083b5cb21f18e124460f887cb0eee8aca28d6cd.tar patches-a083b5cb21f18e124460f887cb0eee8aca28d6cd.tar.gz |
gnu: mit-krb5: Disable parallel build and testing.
* gnu/packages/mit-krb5.scm (mit-krb5)[arguments]: Pass
#:parallel-build? #f and #:parallel-tests? #f.
-rw-r--r-- | gnu/packages/mit-krb5.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/mit-krb5.scm b/gnu/packages/mit-krb5.scm index 565163732e..e7f46ff4a3 100644 --- a/gnu/packages/mit-krb5.scm +++ b/gnu/packages/mit-krb5.scm @@ -49,7 +49,14 @@ `(("bison" ,bison) ("perl" ,perl))) (arguments - `(#:phases + `(;; Work around "No rule to make target '../../include/gssapi/gssapi.h', + ;; needed by 'authgss_prot.so'." + #:parallel-build? #f + + ;; Likewise with tests. + #:parallel-tests? #f + + #:phases (modify-phases %standard-phases (add-after 'unpack 'enter-source-directory (lambda _ |