diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-15 21:10:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-15 21:10:58 +0200 |
commit | c3428a08bef079c107ad3e2cd396192a3eec071e (patch) | |
tree | e2c542ef25ea9dd3a83bfb23ac77a615810ec74c /gnu/packages/apr.scm | |
parent | 09ba396c02405eac12215fd2d5d535a70a75c158 (diff) | |
download | guix-c3428a08bef079c107ad3e2cd396192a3eec071e.tar guix-c3428a08bef079c107ad3e2cd396192a3eec071e.tar.gz |
gnu: apr: Build sequentially.
* gnu/packages/apr.scm (apr)[arguments]: New field.
Diffstat (limited to 'gnu/packages/apr.scm')
-rw-r--r-- | gnu/packages/apr.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/apr.scm b/gnu/packages/apr.scm index cfb3b6acd5..93609ad5ca 100644 --- a/gnu/packages/apr.scm +++ b/gnu/packages/apr.scm @@ -40,6 +40,11 @@ (list (search-patch "apr-skip-getservbyname-test.patch"))) (patch-flags '("-p0")))) (build-system gnu-build-system) + (arguments + ;; Sometimes we end up with two processes concurrently trying to make + ;; 'libmod_test.la': <http://hydra.gnu.org/build/60266/nixlog/2/raw>. + ;; Thus, build sequentially. + '(#:parallel-build? #f)) (inputs `(("perl" ,perl) ("libtool" ,libtool))) (home-page "http://apr.apache.org/") |